ComponentTray.GetLocation(IComponent) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the location of the specified component, relative to the upper-left corner of the component tray.
public:
System::Drawing::Point GetLocation(System::ComponentModel::IComponent ^ receiver);
[System.ComponentModel.Browsable(false)]
public System.Drawing.Point GetLocation (System.ComponentModel.IComponent receiver);
[<System.ComponentModel.Browsable(false)>]
member this.GetLocation : System.ComponentModel.IComponent -> System.Drawing.Point
Public Function GetLocation (receiver As IComponent) As Point
Parameters
- receiver
- IComponent
The IComponent to retrieve the location of.
Returns
A Point indicating the coordinates of the specified component, or an empty Point if the specified component could not be found in the component tray. An empty Point has an IsEmpty property equal to true
and typically has X and Y properties that are each equal to zero.
- Attributes
Remarks
GetLocation is an accessor method for the location extender property that is added to each component in the component tray.