Description
Condition Inherited by Automatic Sequences - if true, the stopping condition will be applied to any automatic sequences activated within the same segment.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Inherited() As Boolean
|
[C#] |
---|
public bool Inherited {get; set;}
|
[Managed C++] |
---|
public: __property bool get_Inherited(); public: __property void set_Inherited(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Inherited(
VARIANT_BOOL * pVal
);
public: HRESULT put_Inherited(
VARIANT_BOOL newVal
);
|
[Java] |
---|
public bool getInherited();
public void setInherited(
bool
);
|
[Python - STK API] |
---|
@property
def Inherited(self) -> bool:
@Inherited.setter
def Inherited(self, newVal:bool) -> None:
|
See Also