15 references to ColumnCount
PresentationFramework (15)
MS\Internal\PtsHost\TableParaClient.cs (3)
1914
int columns = Table.
ColumnCount
;
1982
totalPadding = Table.InternalCellSpacing * Table.
ColumnCount
+ mbpInfo.Margin.Left + mbpInfo.Border.Left + mbpInfo.Padding.Left + mbpInfo.Padding.Right + mbpInfo.Border.Right + mbpInfo.Margin.Right;
2015
double durTotalPadding = cellSpacing * Table.
ColumnCount
+ TextDpi.FromTextDpi(mbpInfo.MBPLeft + mbpInfo.MBPRight);
System\Windows\Automation\Peers\TableAutomationPeer.cs (1)
107
return ((Table)Owner).
ColumnCount
;
System\Windows\Documents\ColumnResizeUndoUnit.cs (1)
49
if(_columnIndex < table.
ColumnCount
- 1)
System\Windows\Documents\TextRangeEditTables.cs (10)
1277
int columnCount = table.
ColumnCount
;
1552
if (cColsDelete == 0 || cColsDelete == startCell.Table.
ColumnCount
)
1632
if (cell.ColumnIndex + cell.ColumnSpan <= cell.Table.
ColumnCount
&&
1679
for(int columnIndex = 0; columnIndex < table.
ColumnCount
; columnIndex++)
1692
Invariant.Assert(columnIndex >= 0 && columnIndex < table.
ColumnCount
, "ColumnIndex validity check");
1702
if(columnIndex == table.
ColumnCount
- 1)
1706
for(int columnIndexCounter = 0; columnIndexCounter < table.
ColumnCount
; columnIndexCounter++)
1753
Invariant.Assert(table.
ColumnCount
> 0, "ColumnCount is expected to be > 0");
1757
if(columnIndex < (table.
ColumnCount
- 1))
2546
return cell.ColumnIndex + cell.ColumnSpan == cell.Table.
ColumnCount
;