15 references to ColumnCount
PresentationFramework (15)
src\Framework\MS\Internal\PtsHost\TableParaClient.cs (3)
2042
int columns = Table.
ColumnCount
;
2110
totalPadding = Table.InternalCellSpacing * Table.
ColumnCount
+ mbpInfo.Margin.Left + mbpInfo.Border.Left + mbpInfo.Padding.Left + mbpInfo.Padding.Right + mbpInfo.Border.Right + mbpInfo.Margin.Right;
2143
double durTotalPadding = cellSpacing * Table.
ColumnCount
+ TextDpi.FromTextDpi(mbpInfo.MBPLeft + mbpInfo.MBPRight);
src\Framework\System\Windows\Automation\Peers\TableAutomationPeer.cs (1)
109
return ((Table)Owner).
ColumnCount
;
src\Framework\System\Windows\Documents\ColumnResizeUndoUnit.cs (1)
56
if(_columnIndex < table.
ColumnCount
- 1)
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (10)
1279
int columnCount = table.
ColumnCount
;
1554
if (cColsDelete == 0 || cColsDelete == startCell.Table.
ColumnCount
)
1634
if (cell.ColumnIndex + cell.ColumnSpan <= cell.Table.
ColumnCount
&&
1681
for(int columnIndex = 0; columnIndex < table.
ColumnCount
; columnIndex++)
1694
Invariant.Assert(columnIndex >= 0 && columnIndex < table.
ColumnCount
, "ColumnIndex validity check");
1704
if(columnIndex == table.
ColumnCount
- 1)
1708
for(int columnIndexCounter = 0; columnIndexCounter < table.
ColumnCount
; columnIndexCounter++)
1755
Invariant.Assert(table.
ColumnCount
> 0, "ColumnCount is expected to be > 0");
1759
if(columnIndex < (table.
ColumnCount
- 1))
2548
return cell.ColumnIndex + cell.ColumnSpan == cell.Table.
ColumnCount
;