IIXC_Image::Save Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
Line 7: Line 7:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT Save([in]  LPWSTR                  ImagePath,
+
<pre class="brush:cpp;gutter:false">HRESULT Save([in]  LPWSTR                  sImagePath,
             [in]  IXC_CreationDisposition  Action);</pre>
+
             [in]  IXC_CreationDisposition  nAction);</pre>
  
 
== Parameters ==
 
== Parameters ==
;ImagePath
+
;sImagePath
 
:[in]  Specifies the name of the destination file.
 
:[in]  Specifies the name of the destination file.
;Action
+
;nAction
 
:[in]  Value of [[PXV:IXC_CreationDisposition|IXC_CreationDisposition]] specifies how the destination file should be created.
 
:[in]  Value of [[PXV:IXC_CreationDisposition|IXC_CreationDisposition]] specifies how the destination file should be created.
  

Latest revision as of 03:15, 15 June 2015

This method saves all pages from the specified image, into a file.

Syntax

HRESULT Save([in]  LPWSTR                   sImagePath,
             [in]  IXC_CreationDisposition  nAction);

Parameters

sImagePath
[in] Specifies the name of the destination file.
nAction
[in] Value of IXC_CreationDisposition specifies how the destination file should be created.

Return Value

Returns S_OK if operation was successful, or error code if not successful.

See Also

IIXC_Image