ActiveReports 13
ToolBoxItem Property
Example 

GrapeCity.ActiveReports.Design.Win Assembly > GrapeCity.ActiveReports.Design Namespace > Designer Class : ToolBoxItem Property
Sets the type of control in the toolbox.
Syntax
'Declaration
 
Public Property ToolBoxItem As Object
public object ToolBoxItem {get; set;}
Remarks
This property is used to implement a custom toolbox toolbar.
Example
private GrapeCity.ActiveReports.Design.Toolbox.Toolbox arToolbox;
private void formDesigner_Load(object sender, System.EventArgs e)
{
    this.arDesigner.Toolbox = this.arToolbox;
    System.Drawing.Design.ToolboxItem tbItem = new System.Drawing.Design.ToolboxItem(typeof(GrapeCity.ActiveReports.Viewer.Win.Viewer));
    this.arToolbox.AddToolboxItem(tbItem, "General");
}
Private arToolbox As GrapeCity.ActiveReports.Design.Toolbox.Toolbox
Private Sub formDesigner_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Designer1.Load
    Me.arDesigner.Toolbox = Me.arToolbox
    Dim tbItem As System.Drawing.Design.ToolboxItem = New System.Drawing.Design.ToolboxItem(GetType(GrapeCity.ActiveReports.Viewer.Win.Viewer))
    arToolbox.AddToolboxItem(tbItem, "General")
End Sub
See Also

Reference

Designer Class
Designer Members