Description
The status to allow/disallow continue saving.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property ContinueSave() As Boolean
|
[C#] |
---|
public bool ContinueSave {get; set;}
|
[Managed C++] |
---|
public: __property bool get_ContinueSave(); public: __property void set_ContinueSave(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_ContinueSave(
VARIANT_BOOL * pVal
);
public: HRESULT put_ContinueSave(
VARIANT_BOOL newVal
);
|
[Java] |
---|
public bool getContinueSave();
public void setContinueSave(
bool
);
|
[Python - STK API] |
---|
@property
def ContinueSave(self) -> bool:
@ContinueSave.setter
def ContinueSave(self, newVal:bool) -> None:
|
See Also