Method Print
Print(IClient, String)
Prints a PDF document.
Declaration
public static Task<int?> Print(this IClient client, string path = null)
Parameters
Type | Name | Description |
---|---|---|
IClient | client | The client object. |
System.String | path | The path to the document on the file system. If null is given, the loaded document, if any, is used. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Nullable<System.Int32>> | Zero in case of success. |
Remarks
Depends on PDF service 5.0.5.
Print(IClient, PrintArgs)
Prints a PDF document.
Declaration
public static Task<int?> Print(this IClient client, PrintArgs printArgs)
Parameters
Type | Name | Description |
---|---|---|
IClient | client | The client object. |
PrintArgs | printArgs | The print arguments including the path to the document on the file system. If none is given, the loaded document, if any, is used. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Nullable<System.Int32>> | Zero in case of success. |
Remarks
Depends on PDF service 5.0.5.