Description
Loads a vdf using the specified path. The method throws an exception if there is a scenario already loaded. If the password isn't needed, enter an empty string.
Syntax
| [Visual Basic .NET] |
|---|
Public Sub LoadVDF( _
ByVal Path As String, _
ByVal Password As String _
)
|
| [Managed C++] |
|---|
public: void LoadVDF(
String __gc ^ Path,
String __gc ^ Password
);
|
| [Unmanaged C++] |
|---|
public: HRESULT LoadVDF(
BSTR Path,
BSTR Password
);
|
[Python - STK API ] |
|---|
def LoadVDF(self, Path:str, Password:str) -> None:
|
Parameters
See Also
Example
Open a VDF
| [Python - STK API] |
|---|
# IAgStkObjectRoot root: STK Object Model Root
root.LoadVDF(r'C:\Program Files\AGI\STK_ODTK 13\Data\ExampleScenarios\Intro_STK_Space_Systems.vdf', '')
|
|
Open a VDF
| [MATLAB] |
|---|
% IAgStkObjectRoot root: STK Object Model Root
root.LoadVDF('C:\Program Files\AGI\STK_ODTK 13\Data\ExampleScenarios\Intro_STK_Space_Systems.vdf', '');
|
|