15 references to ColumnCount
PresentationFramework (15)
MS\Internal\PtsHost\TableParaClient.cs (3)
1921
int columns = Table.
ColumnCount
;
1989
totalPadding = Table.InternalCellSpacing * Table.
ColumnCount
+ mbpInfo.Margin.Left + mbpInfo.Border.Left + mbpInfo.Padding.Left + mbpInfo.Padding.Right + mbpInfo.Border.Right + mbpInfo.Margin.Right;
2022
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)
1276
int columnCount = table.
ColumnCount
;
1551
if (cColsDelete == 0 || cColsDelete == startCell.Table.
ColumnCount
)
1631
if (cell.ColumnIndex + cell.ColumnSpan <= cell.Table.
ColumnCount
&&
1678
for(int columnIndex = 0; columnIndex < table.
ColumnCount
; columnIndex++)
1691
Invariant.Assert(columnIndex >= 0 && columnIndex < table.
ColumnCount
, "ColumnIndex validity check");
1701
if(columnIndex == table.
ColumnCount
- 1)
1705
for(int columnIndexCounter = 0; columnIndexCounter < table.
ColumnCount
; columnIndexCounter++)
1752
Invariant.Assert(table.
ColumnCount
> 0, "ColumnCount is expected to be > 0");
1756
if(columnIndex < (table.
ColumnCount
- 1))
2545
return cell.ColumnIndex + cell.ColumnSpan == cell.Table.
ColumnCount
;