IUIX_RenderContext::DrawSolidBorder 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 DrawSolidBorder([in]                    RECT*        Rect,
+
<pre class="brush:cpp;gutter:false">HRESULT DrawSolidBorder([in]                    RECT*        stRect,
                         [in]                    LONG          Color,
+
                         [in]                    LONG          nColor,
                         [in]                    LONG          Thickness,
+
                         [in]                    LONG          nThickness,
                         [in]                    RECT*        ClipRect,
+
                         [in]                    RECT*        stClipRect,
                         [in, defaultvalue(-1)]  VARIANT_BOOL  AlphaBlend);</pre>
+
                         [in, defaultvalue(-1)]  VARIANT_BOOL  bAlphaBlend);</pre>
  
 
== Parameters ==
 
== Parameters ==
;Rect
+
;stRect
 
:[in]  Pointer to RECT.
 
:[in]  Pointer to RECT.
;Color
+
;nColor
 
:[in]  Value of LONG.
 
:[in]  Value of LONG.
;Thickness
+
;nThickness
 
:[in]  Value of LONG.
 
:[in]  Value of LONG.
;ClipRect
+
;stClipRect
 
:[in]  Pointer to RECT.
 
:[in]  Pointer to RECT.
;AlphaBlend
+
;bAlphaBlend
 
:[in, defaultvalue(-1)]  Value of VARIANT_BOOL.
 
:[in, defaultvalue(-1)]  Value of VARIANT_BOOL.
  

Latest revision as of 04:37, 15 June 2015


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT DrawSolidBorder([in]                    RECT*         stRect,
                        [in]                    LONG          nColor,
                        [in]                    LONG          nThickness,
                        [in]                    RECT*         stClipRect,
                        [in, defaultvalue(-1)]  VARIANT_BOOL  bAlphaBlend);

Parameters

stRect
[in] Pointer to RECT.
nColor
[in] Value of LONG.
nThickness
[in] Value of LONG.
stClipRect
[in] Pointer to RECT.
bAlphaBlend
[in, defaultvalue(-1)] Value of VARIANT_BOOL.

Return Value

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

See Also

IUIX_RenderContext