Description
If true, a target sequence will be able to affect controls and results within a nested target sequence in addition to its own; otherwise, nested controls and results will be unavailable to the parent target sequence - with the exception of parameters defined for a Scripting Tool profile (which exist at the same logical level as the target sequence itself).
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property PromoteControls() As Boolean
|
[C#] |
---|
public bool PromoteControls {get; set;}
|
[Managed C++] |
---|
public: __property bool get_PromoteControls(); public: __property void set_PromoteControls(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_PromoteControls(
VARIANT_BOOL * pVal
);
public: HRESULT put_PromoteControls(
VARIANT_BOOL InVal
);
|
[Java] |
---|
public bool getPromoteControls();
public void setPromoteControls(
bool
);
|
[Python - STK API] |
---|
@property
def PromoteControls(self) -> bool:
@PromoteControls.setter
def PromoteControls(self, InVal:bool) -> None:
|
See Also