| Visual Basic | |
|---|---|
Function GetVertexCoordinate( _ ByVal VertexIndex As System.Integer, _ ByRef X As System.Double, _ ByRef Y As System.Double, _ ByRef Z As System.Double _ ) As System.Boolean | |
| C# | |
|---|---|
System.bool GetVertexCoordinate( System.int VertexIndex, out System.double X, out System.double Y, out System.double Z ) | |
| JavaScript | |
|---|---|
GetVertexCoordinate( VertexIndex : Number ) : { X : Number, Y : Number, Z : Number, Success : Boolean } | |
| COM native C++ | |
|---|---|
HRESULT GetVertexCoordinate( LONG VertexIndex, DOUBLE* X, DOUBLE* Y, DOUBLE* Z, VARIANT_BOOL* Success ) | |
| C++ | |
|---|---|
DSRESULT GetVertexCoordinate( long VertexIndex, double* X, double* Y, double* Z, bool* Success ) | |
Parameters
- VertexIndex
- Index of vertex to get (see Remarks)
- X[out]
- x coordinate of vertex
- Y[out]
- y coordinate of vertex
- Z[out]
- z coordinate of vertex
- Success[out] or Return Value
- True if the coordinates of the vertex are returned, false if not
Call IRichLine::GetVerticesCount to get the number of vertices in the RichLine and to determine a valid value for VertexIndex.
IRichLine Interface
IRichLine Members
IRichLine::AddVertexAfter Method
IRichLine::DeleteVertex Method
IRichLine::SetVertexCoordinate Method
IRichLine Members
IRichLine::AddVertexAfter Method
IRichLine::DeleteVertex Method
IRichLine::SetVertexCoordinate Method
DraftSight V1R1.3
Syntax