15 references to ColumnCount
PresentationFramework (15)
MS\Internal\PtsHost\TableParaClient.cs (3)
1915
int columns = Table.
ColumnCount
;
1983
totalPadding = Table.InternalCellSpacing * Table.
ColumnCount
+ mbpInfo.Margin.Left + mbpInfo.Border.Left + mbpInfo.Padding.Left + mbpInfo.Padding.Right + mbpInfo.Border.Right + mbpInfo.Margin.Right;
2016
double durTotalPadding = cellSpacing * Table.
ColumnCount
+ TextDpi.FromTextDpi(mbpInfo.MBPLeft + mbpInfo.MBPRight);
System\Windows\Automation\Peers\TableAutomationPeer.cs (1)
108
return ((Table)Owner).
ColumnCount
;
System\Windows\Documents\ColumnResizeUndoUnit.cs (1)
50
if(_columnIndex < table.
ColumnCount
- 1)
System\Windows\Documents\TextRangeEditTables.cs (10)
1278
int columnCount = table.
ColumnCount
;
1553
if (cColsDelete == 0 || cColsDelete == startCell.Table.
ColumnCount
)
1633
if (cell.ColumnIndex + cell.ColumnSpan <= cell.Table.
ColumnCount
&&
1680
for(int columnIndex = 0; columnIndex < table.
ColumnCount
; columnIndex++)
1693
Invariant.Assert(columnIndex >= 0 && columnIndex < table.
ColumnCount
, "ColumnIndex validity check");
1703
if(columnIndex == table.
ColumnCount
- 1)
1707
for(int columnIndexCounter = 0; columnIndexCounter < table.
ColumnCount
; columnIndexCounter++)
1754
Invariant.Assert(table.
ColumnCount
> 0, "ColumnCount is expected to be > 0");
1758
if(columnIndex < (table.
ColumnCount
- 1))
2547
return cell.ColumnIndex + cell.ColumnSpan == cell.Table.
ColumnCount
;