ActiveReports 6 Online Help
Button Constructor
Example 

Initializes a new instance of the Button class.
Syntax
'Declaration
 
Public Function New()
public Button()
Example
private void Detail_Format(object sender, System.EventArgs eArgs)
{
    Button b = new Button();
    b.CalcSize();
}
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
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

Reference

Button Class
Button Members

Send Feedback