C1.Win.InputPanel.8 Assembly / C1.Win.InputPanel Namespace / C1InputPanelBase Class / GetBounds Method / GetBounds(Element,Boolean,Boolean) Method
C1.Framework.XView.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
 
Public Overloads Function GetBounds( _
   ByVal e As Element, _
   ByVal contentArea As Boolean, _
   ByVal clip As Boolean _
) As Rectangle
 

Parameters

e
C1.Framework.XView.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 C1.Framework.Element.GetBounds method in the C1.Framework.XView.Element class, except this one takes the current C1.Framework.ScrollableControl.ScrollPosition into account.
See Also