IPXS_PDFVariant::Stream_SetMemData Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
Line 9: Line 9:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT Stream_SetMemData([in]                      IMemBlock*                Src,
+
<pre class="brush:cpp;gutter:false">HRESULT Stream_SetMemData([in]                      IMemBlock*                pSrc,
                           [in]                      IPXS_EncodeFiltersArray*  Filters,
+
                           [in]                      IPXS_EncodeFiltersArray*  pFilters,
                           [in, defaultvalue(NULL)]  PXS_StreamInfo*          StreamInfo,
+
                           [in, defaultvalue(NULL)]  PXS_StreamInfo*          stStreamInfo,
                           [in, defaultvalue(0)]    ULONG                    Flags);</pre>
+
                           [in, defaultvalue(0)]    ULONG                    nFlags);</pre>
  
 
== Parameters ==
 
== Parameters ==
;Src
+
;pSrc
 
:[in]  Pointer to [[PXV:IMemBlock|IMemBlock]].
 
:[in]  Pointer to [[PXV:IMemBlock|IMemBlock]].
;Filters
+
;pFilters
 
:[in]  Pointer to [[PXV:IPXS_EncodeFiltersArray|IPXS_EncodeFiltersArray]].
 
:[in]  Pointer to [[PXV:IPXS_EncodeFiltersArray|IPXS_EncodeFiltersArray]].
;StreamInfo
+
;stStreamInfo
 
:[in, defaultvalue(NULL)]  Pointer to [[PXV:PXS_StreamInfo|PXS_StreamInfo]].
 
:[in, defaultvalue(NULL)]  Pointer to [[PXV:PXS_StreamInfo|PXS_StreamInfo]].
;Flags
+
;nFlags
 
:[in, defaultvalue(0)]  Value of ULONG.
 
:[in, defaultvalue(0)]  Value of ULONG.
  

Latest revision as of 03:45, 15 June 2015


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT Stream_SetMemData([in]                      IMemBlock*                pSrc,
                          [in]                      IPXS_EncodeFiltersArray*  pFilters,
                          [in, defaultvalue(NULL)]  PXS_StreamInfo*           stStreamInfo,
                          [in, defaultvalue(0)]     ULONG                     nFlags);

Parameters

pSrc
[in] Pointer to IMemBlock.
pFilters
[in] Pointer to IPXS_EncodeFiltersArray.
stStreamInfo
[in, defaultvalue(NULL)] Pointer to PXS_StreamInfo.
nFlags
[in, defaultvalue(0)] Value of ULONG.

Return Value

Returns S_OK if operation was successful or error code in other cases.

See Also

IPXS_PDFVariant