Document Constructor (String, String, Boolean)
|
Initializes a new instance of the Document class with the specified file name, password, and engine usage.
Namespace:
Spire.Doc
Assembly:
Spire.Doc (in Spire.Doc.dll) Version: 13.2.3.0 (13.2.3.3046)
Syntax
public Document(
string fileName,
string password,
bool useNewEngine
)
Public Sub New (
fileName As String,
password As String,
useNewEngine As Boolean
)
public:
Document(
String^ fileName,
String^ password,
bool useNewEngine
)
new :
fileName : string *
password : string *
useNewEngine : bool -> Document
Parameters
-
fileName
-
Type:
System
String
The name of the document file.
-
password
-
Type:
System
String
The password required to open the document.
-
useNewEngine
-
Type:
System
Boolean
Indicates whether to use the new engine for processing the document.
See Also