ImageGear .NET v25.2 - Updated
ImageGear.Art Assembly / ImageGear.ART Namespace / ImGearARTPage Class / Bounds Property




In This Topic
    Bounds Property (ImGearARTPage)
    In This Topic
    Gets or sets the bounding rectangle of the annotation page.
    Syntax
    'Declaration
     
    Public Property Bounds As IImGearRectangle
    'Usage
     
    Dim instance As ImGearARTPage
    Dim value As IImGearRectangle
     
    instance.Bounds = value
     
    value = instance.Bounds
    public IImGearRectangle Bounds {get; set;}
    public: __property IImGearRectangle* get_Bounds();
    public: __property void set_Bounds( 
       IImGearRectangle* value
    );
    public:
    property IImGearRectangle^ Bounds {
       IImGearRectangle^ get();
       void set (    IImGearRectangle^ value);
    }

    Property Value

    ImageGear.Core.ImGearRectangle structure object.
    Remarks
    This is a rectangle that encloses all annotation marks on the page.

    This property can be used if you want to change the default bounding rectangle or when the marks' coordinates are specified in device units. If this property is set to null and ART page is associated with ImageGear.Core.ImGearPage class the ImageGear.Core.ImGearPage class's rectangle is used.

    The default value is null.
    See Also