 | IObjectsAddPolyLine Method |
Adds a polyline, a series of line segments, defined by a list of points.
The lengths of all segments mu be greater than precision.
Each segment of the polyline has its own name "PolyLine_PartN" where N is an index of the line segment
starting from 0.
Namespace:
EMInvent.InventSim.COMServer
Assembly:
InventSim (in InventSim.exe) Version: 5.1.12.6+develop
SyntaxISimObject AddPolyLine(
string name,
string points
)
Function AddPolyLine (
name As String,
points As String
) As ISimObject
Dim instance As IObjects
Dim name As String
Dim points As String
Dim returnValue As ISimObject
returnValue = instance.AddPolyLine(name,
points)
Parameters
- name
- Type: SystemString
Name of the polyline. - points
- Type: SystemString
List of points separated by '|' character.
Return Value
Type:
ISimObjectReference to the polyline.
See Also