Visual Basic
C#
Managed Extensions for C++
C++/CLI
'Declaration <BrowsableAttribute(False)> <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> Public Property DebugLogFile As String
'Usage Dim instance As BarcodeXpress Dim value As String instance.DebugLogFile = value value = instance.DebugLogFile
Property Value
A string value which represents the full path and name of the debug log file.This property allows you to control the location of the debug log file.
Valid value: Any valid filename.
Default value: "%TEMP%\BarcodeXpress9.log"
Note: This property will have no effect if you set the Debug property to false.
C# | ![]() |
---|---|
... // Set the DebugLogFile path and name bcXpress.DebugLogFile = "c:\logFile.txt"; ... |