Initializes a new path point with the given date, position and color.
[Visual Basic .NET] |
---|
Public Function InitializeWithDatePositionAndColor( _ ByVal PathPointDate As IAgDate, _ ByVal Position As System.Array, _ ByVal Color As System.Drawing.Color _ ) As IAgStkGraphicsPathPoint |
[C#] |
---|
public IAgStkGraphicsPathPoint InitializeWithDatePositionAndColor( IAgDate PathPointDate, System.Array Position, System.Drawing.Color Color ); |
[Managed C++] |
---|
public: IAgStkGraphicsPathPoint^ InitializeWithDatePositionAndColor( IAgDate ^ PathPointDate, System::Array ^ Position, uint Color ); |
[Unmanaged C++] |
---|
public: HRESULT InitializeWithDatePositionAndColor( IAgDate * PathPointDate, SAFEARRAY * * Position, uint Color, IAgStkGraphicsPathPoint ** ppRetVal ); |
[Java] |
---|
public IAgStkGraphicsPathPoint initializeWithDatePositionAndColor( IAgDate PathPointDate, AgSafeArray Position, long Color ); |
[Python - STK API ] |
---|
def InitializeWithDatePositionAndColor(self, PathPointDate:"IAgDate", Position:list, Color:agi.stk12.utilities.colors.Color) -> "IAgStkGraphicsPathPoint": |
- PathPointDate
- A date of the path point.
- Position
- A position of the path point specified as a cartesian point (X/Y/Z).
- Color
- A color of the path point.
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] | ||
---|---|---|
|