ColumnCount Property (Detail)
Gets or sets a value that specifies the number of newspaper columns in the report.
public int ColumnCount {get; set;}
'Declaration
Public Property ColumnCount As Integer
Property Value
Integer value that represents the current number of columns in the report; default is 1.
private void detail_Format(object sender, System.EventArgs eArgs)
{
this.detail.ColumnCount = 1;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
Me.Detail.ColumnCount = 1
End Sub