ActiveReports 6 Online Help
CheckButton Class
Members  Example 

Displays a three state button on the toolbar.
Object Model
CheckButton Class
Syntax
'Declaration
 
Public Class CheckButton 
   Inherits Button
public class CheckButton : Button 
Remarks
The current state of the CheckButton class is determined by the CheckState property.
Example
DataDynamics.ActiveReports.Toolbar.CheckButton chk = New DataDynamics.ActiveReports.Toolbar.CheckButton();
chk.ButtonStyle = DataDynamics.ActiveReports.Toolbar.ButtonStyle.TextAndIcon;
chk.Caption = "Check it out!";
chk.CheckState = CheckState.Unchecked;
chk.Id = 777;
arv.Toolbar.Tools.Insert(1, chk);
Dim chk As New DataDynamics.ActiveReports.Toolbar.CheckButton
chk.ButtonStyle = DataDynamics.ActiveReports.Toolbar.ButtonStyle.TextAndIcon
chk.Caption = "Check it out!"
chk.CheckState = CheckState.Unchecked
chk.Id = 777
arv.Toolbar.Tools.Insert(1, chk)
Inheritance Hierarchy

System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         DataDynamics.ActiveReports.Toolbar.Tool
            DataDynamics.ActiveReports.Toolbar.Button
               DataDynamics.ActiveReports.Toolbar.CheckButton

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

CheckButton Members
DataDynamics.ActiveReports.Toolbar Namespace

Send Feedback