Gets or sets a value that specifies whether the section should print underneath the following section.
Syntax
Visual Basic (Declaration) | |
---|
Public Property UnderlayNext As System.Boolean |
C# | |
---|
public System.bool UnderlayNext {get; set;} |
Property Value
A Boolean value.
True if the following section will start rendering at the top of this section; otherwise,
False.
Remarks
Example
C# | Copy Code |
---|
private void groupHeader1_Format(object sender, System.EventArgs eArgs)
{
this.groupHeader1.UnderlayNext = true;
} |
Visual Basic | Copy Code |
---|
Private Sub GroupHeader1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles GroupHeader1.Format
Me.GroupHeader1.UnderlayNext = True
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