ActiveReports3 Request technical support
Enabled Property
See Also  Example


Determines whether the PageBreak is currently enabled.

Syntax

Visual Basic (Declaration) 
Public Property Enabled As Boolean
Visual Basic (Usage)Copy Code
Dim instance As PageBreak
Dim value As Boolean
 
instance.Enabled = value
 
value = instance.Enabled
C# 
public bool Enabled {get; set;}

Return Value

Boolean. True if the control is enabled and should create a page break at the specified position; otherwise False.

Example

C#Copy Code
private void groupFooter1_Format(object sender, System.EventArgs eArgs)
{
   
this.pageBreak1.Enabled = false;
}
Visual BasicCopy Code
Private Sub GroupFooter1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles GroupFooter1.Format
    Me.PageBreak1.Enabled = False
End Sub

See Also