Leadtools.Forms.DocumentWriters Namespace : IDocumentOptions Interface |
public interface IDocumentOptions
'Declaration Public Interface IDocumentOptions
'Usage Dim instance As IDocumentOptions
public interface IDocumentOptions
function Leadtools.Forms.DocumentWriters.IDocumentOptions()
public interface class IDocumentOptions
Note: In LEADTOOLS for .NET, the equivalant to this class is the DocumentOptions class.
You cannot use the IDocumentOptions interface directly. Instead, use one of the derived classes to get and set the options associated with a document format. The following table lists the document formats and the IDocumentOptions implementation classes associated with it:
To change the options used with a particular format, perform the following steps:
Use the DocumentWriter.GetOptions method for the DocumentWriter object you are using, passing DocumentFormat desired in to the format parameter. The resulting object from the IDocumentOptions interface needs to be cast to an appropriate derived class described in the previous table.
Use the various derived class properties to change the options.
Use DocumentWriter.SetOptions to set the new options for the engine.
Now call the DocumentWriter.BeginDocument method (using the desired DocumentFormat value for the format parameter) to create a new document and add the pages.