Accusoft.ISISXpressSdk Namespace > IsisXpress Class : DebugLogFile Property |
'Declaration <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> <BrowsableAttribute(False)> Public Property DebugLogFile As String
'Usage Dim instance As IsisXpress Dim value As String instance.DebugLogFile = value value = instance.DebugLogFile
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)] [BrowsableAttribute(false)] public string DebugLogFile {get; set;}
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)] [BrowsableAttribute(false)] public: __property string* get_DebugLogFile(); public: __property void set_DebugLogFile( string* value );
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)] [BrowsableAttribute(false)] public: property String^ DebugLogFile { String^ get(); void set ( String^ value); }
This property allows you to control the location of the debug log file.
Valid value: Any valid filename.
Default value: "temp\ISISXpress7.log"
Note: This property will have no effect if you set the Debug property to false.
...
// Set the DebugLogFile path and name
IsisXpress.DebugLogFile = "c:\logFile.txt";
...