C1.Win.4.8 Assembly / C1.Framework Namespace / IView Interface / GetBounds Method / GetBounds(Element,Boolean,Boolean) 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(Element,Boolean,Boolean) Method
In This Topic
Gets the rectangle that contains a given element.
Syntax
'Declaration
 
Overloads Function GetBounds( _
   ByVal e As Element, _
   ByVal contentArea As Boolean, _
   ByVal clip As Boolean _
) As Rectangle
 

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, except this one takes the current ScrollableControl.ScrollPosition into account.
See Also