Document.GetPreprocessTemplate Method
|
This method returns the name of the selected preprocess template.
Namespace:
Kofax.OmniPageCSDK.IproPlus
Assembly:
Kofax.OmniPageCSDK.IproPlus (in Kofax.OmniPageCSDK.IproPlus.dll) Version: 1.0.0.0
Syntaxpublic void GetPreprocessTemplate(
out string Name,
out bool Embedded
)
Public Sub GetPreprocessTemplate (
<OutAttribute> ByRef Name As String,
<OutAttribute> ByRef Embedded As Boolean
)
public:
void GetPreprocessTemplate(
[OutAttribute] String^% Name,
[OutAttribute] bool% Embedded
)
Parameters
- Name
- Type: System.String
- Embedded
- Type: System.Boolean
Remarks
The Name output parameter is filled in with the name of the current template,
the Embedded parameter returns whether the template is stored in the file system (i.e. Name specifies a full path), or it is embedded in the document
(i.e. Name is a stream name managed as document client data of type CD_PPTEMPLATE).
If no preprocess template is selected, an empty string and False is returned.
See Also