Scope: Schematic editor
Object: Component Object
Prerequisites: None
Returns the coordinates of a specified corner of a bounding box.
Component.GetBboxPoint(ByVal Location As VdCorner) As IVdPoint
All coordinates are measured in 100ths of an inch.
Specifies which location coordinates to return, as described in “VdCorner Enum”.
As IVdPoint. The Point Object representing the coordinates.
This example displays both coordinates.
MsgBox "LowerLeft X=" & Component.GetBboxPoint(VDLOWERLEFT).X & " Y=" & Component.GetBboxPoint(VDUPPERRIGHT).Y