UseOfficeCreateTraceFile Property |
Forces the component to create a tracing file
Namespace: SautinSoftAssembly: UseOffice (in UseOffice.dll) Version: 2024.12.12
Syntax public bool CreateTraceFile { get; set; }
Public Property CreateTraceFile As Boolean
Get
Set
Property Value
BooleanRemarks This file contains a debug info to determine possible issues during converting.
Default value: False
By default a tracing file will be created at "c:\useoffice-trace.txt", you can specify any path using the property
TraceFilePath.
Example SautinSoft.UseOffice u = new UseOffice();
u.CreateTraceFile = true;
u.TraceFilePath = @"d:\trace.txt";
Dim u As New SautinSoft.UseOffice()
u.CreateTraceFile = True
u.TraceFilePath = "d:\trace.txt"
See Also