Description
If set to do so, results will be output to a file with this name.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property OutputFile() As String
|
[C#] |
---|
public string OutputFile {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_OutputFile(); public: __property void set_OutputFile(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_OutputFile(
BSTR * pRetVal
);
public: HRESULT put_OutputFile(
BSTR FileName
);
|
[Java] |
---|
public String getOutputFile();
public void setOutputFile(
String
);
|
[Python - STK API] |
---|
@property
def OutputFile(self) -> str:
@OutputFile.setter
def OutputFile(self, FileName:str) -> None:
|
See Also