ControlExtensionsGetBoundsRelativeToForm Method
Gets the bounds of the source Control relatively to its parent Form.
Namespace: DevCase.Extensions.ControlExtensionsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static Rectangle GetBoundsRelativeToForm(
this Control sender
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Function GetBoundsRelativeToForm (
sender As Control
) As Rectangle
Dim sender As Control
Dim returnValue As Rectangle
returnValue = sender.GetBoundsRelativeToForm()
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
static Rectangle GetBoundsRelativeToForm(
Control^ sender
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member GetBoundsRelativeToForm :
sender : Control -> Rectangle
No code example is currently available or this language may not be supported.
- sender Control
-
The source Control.
Rectangle
The bounds of the source
Control relatively to its parent
Form.
In Visual Basic and C#, you can call this method as an instance method on any object of type
Control. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
This is a code example.
No code example is currently available or this language may not be supported.
Dim ctrl As New Label
Dim rc As Rectangle = ctrl.GetBoundsRelativeToForm()
Console.WriteLine(rc.ToString())
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.