ActiveReports.Viewer3 Request technical support
Button Constructor
See Also  Example


Initializes a new instance of the Button class.

Syntax

Visual Basic (Declaration) 
Public Function New()
Visual Basic (Usage)Copy Code
Dim instance As Button()
C# 
public Button()

Example

C#Copy Code
private void Detail_Format(object sender, System.EventArgs eArgs)
{
   Button b =
new Button();
   b.CalcSize();
}
Visual BasicCopy Code
Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
    Dim b As New Button()
    b.CalcSize()
End Sub

See Also