Description
Defines the positions of a polyline using a subset of input positions.
Syntax
[Visual Basic .NET] |
---|
Public Sub SetSubset( _
ByVal Positions As System.Array, _
ByVal Index As Integer, _
ByVal Count As Integer _
)
|
Parameters
Remarks
See Also
Example
Shows the format of the Positions parameter when updating a polyline primitive.
[C#] |
---|
Array positions = new object[]
{
1247.87, -4739.74, 4067.77,
1115.48, -4847.09, 3979.36,
-24.12, -5529.31, 3168.45,
-2683.42, -4307.74, 3850.11
};
polyline.SetSubset(
ref positions,
1,
2);
|
|
Shows the format of the Positions parameter when updating a polyline primitive.
[Visual Basic .NET] |
---|
Dim positions As Array = New Object() {1247.87, -4739.74, 4067.77, 1115.48, -4847.09, 3979.36, _
-24.12, -5529.31, 3168.45, -2683.42, -4307.74, 3850.11}
polyline.SetSubset(positions, 1, 2)
|
|