Description
Sets or returns an int
that represents the number of columns in this section.
C#
public int NumColumns{ get ; set ; } |
vb.net
Public Property NumColumns() As Integer |
Examples
$bodyC#
//--- Return NumColumns int numColumns = oSection.NumColumns; //--- Set NumColumns oSection.NumColumns = 2; |
vb.net
'--- Return NumColumns Dim numColumns As Integer = oSection.NumColumns '--- Set NumColumns oSection.NumColumns = 2 |