ColumnSpacing Property (Detail)
Sets or returns the space between columns in a multi-column report.
public float ColumnSpacing {get; set;}
'Declaration
Public Property ColumnSpacing As Single
Property Value
A single value that represents the space between columns.
private void detail_Format(object sender, System.EventArgs eArgs)
{
this.detail.ColumnCount = 3;
this.detail.ColumnSpacing = 1;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
Me.Detail1.ColumnCount = 3
Me.Detail1.ColumnSpacing = 1
End Sub