ImageGear .NET v25.2 - Updated
ImageGear.Art Assembly / ImageGear.ART Namespace / ImGearARTHighlighter Class / GetRenderBounds Method
The page display.




In This Topic
    GetRenderBounds Method (ImGearARTHighlighter)
    In This Topic
    Gets rendering bounding rectangle of the mark in abstract coordinates.
    Syntax
    'Declaration
     
    Public Overrides Function GetRenderBounds( _
       ByVal pageDisplay As IImGearPageDisplay _
    ) As ImGearRectangle
    'Usage
     
    Dim instance As ImGearARTHighlighter
    Dim pageDisplay As IImGearPageDisplay
    Dim value As ImGearRectangle
     
    value = instance.GetRenderBounds(pageDisplay)
    public override ImGearRectangle GetRenderBounds( 
       IImGearPageDisplay pageDisplay
    )
    public: ImGearRectangle GetRenderBounds( 
       IImGearPageDisplay* pageDisplay
    ) override 
    public:
    ImGearRectangle GetRenderBounds( 
       IImGearPageDisplay^ pageDisplay
    ) override 

    Parameters

    pageDisplay
    The page display.

    Return Value

    Remarks
    The type of the mark's coordinate system is specifying when using ImGearARTPage.AddMark method.

    As opposed to Bounds property, which takes into account mark's bounding points only, this method considers all rendering elements of the mark - i.e. in addition to the bounding points it takes into account additional attributes, if any: border, line width, label, selection, etc...

    See Also