Description
The number of times the condition must be satisfied before the propagation ends or moves on to the designated automatic sequence. Dimensionless.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property RepeatCount() As Double
|
[C#] |
---|
public double RepeatCount {get; set;}
|
[Managed C++] |
---|
public: __property double get_RepeatCount(); public: __property void set_RepeatCount(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_RepeatCount(
double * pVal
);
public: HRESULT put_RepeatCount(
double newVal
);
|
[Java] |
---|
public double getRepeatCount();
public void setRepeatCount(
double
);
|
[Python - STK API] |
---|
@property
def RepeatCount(self) -> float:
@RepeatCount.setter
def RepeatCount(self, newVal:float) -> None:
|
See Also