Click or drag to resize

UseOfficeCreateTraceFile Property

Forces the component to create a tracing file

Namespace: SautinSoft
Assembly: UseOffice (in UseOffice.dll) Version: 2024.12.12
Syntax
public bool CreateTraceFile { get; set; }

Property Value

Boolean
Remarks
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";
See Also