Description
Sets or returns the number of columns in the area.
C#
public int ColumnCount{ get ; } |
vb.net
Public ReadOnly Property ColumnCount() As Integer |
Examples
C#
//--- Get ColumnCount int colCount = a.ColumnCount; //--- Set ColumnCount a.ColumnCount = 7; |
vb.net
'--- Get ColumnCount Dim colCount As Integer = a.ColumnCount '--- Set ColumnCount a.ColumnCount = 7 |