InputPanel for WinForms | ComponentOne
C1.Win.4.5.2 Assembly / C1.Framework Namespace / XViewLight Class / GetBounds Method
Element to locate.
Whether to get the bounds of the whole element or just the content area.
Whether to clip the rectangle based on ancestor elements.

In This Topic
    GetBounds Method (XViewLight)
    In This Topic
    Gets the rectangle that contains a given element.
    Syntax
    'Declaration
     
    Protected Function GetBounds( _
       ByVal e As Element, _
       Optional ByVal contentArea As Boolean, _
       Optional ByVal clip As Boolean _
    ) As Rectangle
    protected Rectangle GetBounds( 
       Element e,
       bool contentArea,
       bool clip
    )

    Parameters

    e
    Element to locate.
    contentArea
    Whether to get the bounds of the whole element or just the content area.
    clip
    Whether to clip the rectangle based on ancestor elements.

    Return Value

    Bounds of element e, in client coordinates.
    Remarks
    This method is similar to the Element.GetBounds method in the Element class.
    See Also