Initializes a new path point with the given date and position.
[Visual Basic .NET] |
---|
Public Function InitializeWithDateAndPosition( _ ByVal PathPointDate As IAgDate, _ ByVal Position As System.Array _ ) As IAgStkGraphicsPathPoint |
[C#] |
---|
public IAgStkGraphicsPathPoint InitializeWithDateAndPosition( IAgDate PathPointDate, System.Array Position ); |
[Managed C++] |
---|
public: IAgStkGraphicsPathPoint^ InitializeWithDateAndPosition( IAgDate ^ PathPointDate, System::Array ^ Position ); |
[Unmanaged C++] |
---|
public: HRESULT InitializeWithDateAndPosition( IAgDate * PathPointDate, SAFEARRAY * * Position, IAgStkGraphicsPathPoint ** ppRetVal ); |
[Java] |
---|
public IAgStkGraphicsPathPoint initializeWithDateAndPosition( IAgDate PathPointDate, AgSafeArray Position ); |
[Python - STK API ] |
---|
def InitializeWithDateAndPosition(self, PathPointDate:"IAgDate", Position:list) -> "IAgStkGraphicsPathPoint": |
- PathPointDate
- A date of the path point.
- Position
- A position of the path point specified as a cartesian point (X/Y/Z).
Shows the format of the Position parameter when creating a path point.
[C#] | ||
---|---|---|
|
Shows the format of the Position parameter when creating a path point.
[Visual Basic .NET] | ||
---|---|---|
|