Gets or sets the amount of space between columns in inches.
Syntax
Visual Basic (Declaration) | |
---|
Public Property Gutter As System.Single |
C# | |
---|
public System.float Gutter {get; set;} |
Property Value
A float or Single value in inches used to determine the gutter width.
Example
C# | Copy Code |
---|
private void rptPageSettings_ReportStart(object sender, System.EventArgs eArgs)
{
this.PageSettings.Gutter = 1.0f;
} |
Visual Basic | Copy Code |
---|
Private Sub rptPageSettings_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
Me.PageSettings.Gutter = 1.0F
End Sub |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also