ActiveReports 14 .NET Edition
GrapeCity.ActiveReports.Design.Win Assembly / GrapeCity.ActiveReports.Design Namespace / Designer Class / DesignerUnits Property
Example

In This Topic
    DesignerUnits Property
    In This Topic
    Gets or sets the measurement units for the designer.
    Syntax
    'Declaration
     
    Public Property DesignerUnits As MeasurementUnits
    public MeasurementUnits DesignerUnits {get; set;}

    Property Value

    Integer.
    Example
    private void designer1_Load(object sender, System.EventArgs e)
    {
        this.designer1.DesignerUnits = GrapeCity.ActiveReports.Design.MeasurementUnits.Inches;
        this.designer1.ToolBoxItem = null;
    }
    Private Sub Designer1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Designer1.Load
        Me.Designer1.DesignerUnits = GrapeCity.ActiveReports.Design.MeasurementUnits.Inches
        Me.Designer1.ToolBoxItem = Nothing
    End Sub
    See Also