STK ObjectsSend comments on this topic.
Export Method (IAgStkObject)
See Also
Filename
The file name to export the object to.
Windows





Windows & Linux

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

Filename
The file name to export the object to.

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)
© 2024 Analytical Graphics, Inc. All Rights Reserved.