Description
The start time. Uses current animation time if none is entered.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property StartTime() As System.Object
|
[C#] |
---|
public System.Object StartTime {get; set;}
|
[Managed C++] |
---|
public: __property VARIANT get_StartTime(); public: __property void set_StartTime(
VARIANT
);
|
[Unmanaged C++] |
---|
public: HRESULT get_StartTime(
VARIANT * pStartTime
);
public: HRESULT put_StartTime(
VARIANT StartTime
);
|
[Java] |
---|
public AgVariant getStartTime();
public void setStartTime(
AgVariant
);
|
[Python - STK API] |
---|
@property
def StartTime(self) -> typing.Any:
@StartTime.setter
def StartTime(self, StartTime:typing.Any) -> None:
|
See Also