Description
A Factory object to create points.
Public Methods
Public Properties
AvailablePointPluginDisplayNames | An array of display names associated with available point plugins. The elements of the array are strings. Display names are used to create VGT points based on COM plugins using CreatePointPluginFromDisplayName method. |
Example
Create a B-Plane point using selected target body.
[C#] |
---|
// Create a B-Plane point using selected target body
IAgCrdnPointBPlane point = (IAgCrdnPointBPlane)provider.Points.Factory.Create(
"PointName", string.Empty, AgECrdnPointType.eCrdnPointTypeBPlane);
point.TargetBody.SetPath(TargetBody);
|
|
Create a B-Plane point using selected target body.
[Visual Basic .NET] |
---|
' Create a B-Plane point using selected target body
Dim point As IAgCrdnPointBPlane = DirectCast(provider.Points.Factory.Create("PointName", String.Empty, AgECrdnPointType.eCrdnPointTypeBPlane), IAgCrdnPointBPlane)
point.TargetBody.SetPath(TargetBody)
|
|