Visual Basic (Declaration) | |
---|---|
Public Property ColumnSpacing As System.Single |
C# | |
---|---|
public System.float ColumnSpacing {get; set;} |
Property Value
A single value that represents the space between columns.C# | Copy Code |
---|---|
private void detail_Format(object sender, System.EventArgs eArgs) { this.detail.ColumnCount = 3; this.detail.ColumnSpacing = 1; } |
Visual Basic | Copy Code |
---|---|
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 |