Description
Exports the object to a file.
Syntax
| [Visual Basic .NET] |
|---|
Public Sub Export( _
ByVal Filename As String _
)
|
| [C#] |
|---|
public void Export(
string Filename
);
|
| [Managed C++] |
|---|
public: void Export(
String __gc ^ Filename
);
|
| [Unmanaged C++] |
|---|
public: HRESULT Export(
BSTR Filename
);
|
| [Java] |
|---|
public void export(
String Filename
);
|
[Python - STK API ] |
|---|
def Export(self, Filename:str) -> None:
|
Parameters
See Also
Example
Export a STK Object to a file
| [C#] |
|---|
string fileNameWithoutExtension = Path.Combine(outputPath, "MySatellite1");
stkObject.Export(fileNameWithoutExtension);
|
|
Export a STK Object to a file
| [Visual Basic .NET] |
|---|
Dim fileNameWithoutExtension As String = Path.Combine(outputPath, "MySatellite1")
stkObject.Export(fileNameWithoutExtension)
|
|