Description
Displays a point at the current animation time.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Point() As String
|
[C#] |
---|
public string Point {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_Point(); public: __property void set_Point(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Point(
BSTR * pVal
);
public: HRESULT put_Point(
BSTR pVal
);
|
[Java] |
---|
public String getPoint();
public void setPoint(
String
);
|
[Python - STK API] |
---|
@property
def Point(self) -> str:
@Point.setter
def Point(self, pVal:str) -> None:
|
See Also