Description
The number of times that the sequence will be executed. A sequence that is repeated is executed immediately subsequent to the previous execution of the sequence. Dimensionless.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property RepeatCount() As Integer
|
[C#] |
---|
public int RepeatCount {get; set;}
|
[Managed C++] |
---|
public: __property int get_RepeatCount(); public: __property void set_RepeatCount(
int
);
|
[Unmanaged C++] |
---|
public: HRESULT get_RepeatCount(
long * pVal
);
public: HRESULT put_RepeatCount(
long newVal
);
|
[Java] |
---|
public int getRepeatCount();
public void setRepeatCount(
int
);
|
[Python - STK API] |
---|
@property
def RepeatCount(self) -> int:
@RepeatCount.setter
def RepeatCount(self, newVal:int) -> None:
|
See Also