Description
If true, the sequence will run once before executing the script.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property PreIterate() As Boolean
|
| [C#] |
|---|
public bool PreIterate {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_PreIterate(); public: __property void set_PreIterate(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_PreIterate(
VARIANT_BOOL * pVal
);
public: HRESULT put_PreIterate(
VARIANT_BOOL InVal
);
|
| [Java] |
|---|
public bool getPreIterate();
public void setPreIterate(
bool
);
|
| [Python - STK API] |
|---|
@property
def PreIterate(self) -> bool:
@PreIterate.setter
def PreIterate(self, InVal:bool) -> None:
|
See Also