IUIX_Inst::CreateNewBrush Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 8: Line 8:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT CreateNewBrush([in, defaultvalue(UIX_BrushType_Solid)]  UIX_BrushType  Type,
+
<pre class="brush:cpp;gutter:false">HRESULT CreateNewBrush([in, defaultvalue(UIX_BrushType_Solid)]  UIX_BrushType  nType,
                       [out, retval]                            IUIX_Brush**  Brush);</pre>
+
                       [out, retval]                            IUIX_Brush**  pBrush);</pre>
  
 
== Parameters ==
 
== Parameters ==
;Type
+
;nType
 
:[in, defaultvalue(UIX_BrushType_Solid)]  specifies brush type with flags from [[PXV:UIX_BrushType|UIX_BrushType]] enumeration.
 
:[in, defaultvalue(UIX_BrushType_Solid)]  specifies brush type with flags from [[PXV:UIX_BrushType|UIX_BrushType]] enumeration.
;Brush
+
;pBrush
 
:[out, retval]  return object of [[PXV:IUIX_Brush|IUIX_Brush]] interface.
 
:[out, retval]  return object of [[PXV:IUIX_Brush|IUIX_Brush]] interface.
  

Revision as of 04:24, 15 June 2015


Creates new object of IUIX_Brush interface.

Syntax

HRESULT CreateNewBrush([in, defaultvalue(UIX_BrushType_Solid)]  UIX_BrushType  nType,
                       [out, retval]                            IUIX_Brush**   pBrush);

Parameters

nType
[in, defaultvalue(UIX_BrushType_Solid)] specifies brush type with flags from UIX_BrushType enumeration.
pBrush
[out, retval] return object of IUIX_Brush interface.

Return Value

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

See Also

IUIX_Inst