Description
The default directory of the database file.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property DefaultDir() As String
|
| [C#] |
|---|
public string DefaultDir {get; set;}
|
| [Managed C++] |
|---|
public: __property String __gc ^ get_DefaultDir(); public: __property void set_DefaultDir(
String __gc ^
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_DefaultDir(
BSTR * pVal
);
public: HRESULT put_DefaultDir(
BSTR pVal
);
|
| [Java] |
|---|
public String getDefaultDir();
public void setDefaultDir(
String
);
|
| [Python - STK API] |
|---|
@property
def DefaultDir(self) -> str:
@DefaultDir.setter
def DefaultDir(self, pVal:str) -> None:
|
See Also