IXC_FastRotate Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IXC_FastRotate Enumeration}}
 
{{#customTitle:IXC_FastRotate Enumeration}}
{{ToWrite}}
+
{{#parentPage:PXV:IXC_Enumerations|IXC_FastRotate|enum}}
{{ToReview}}
+
  
Specifies the ...
+
Specifies the angle for rotating.
  
 
== Syntax ==
 
== Syntax ==
 
<pre class="brush:cpp;gutter:false">enum IXC_FastRotate
 
<pre class="brush:cpp;gutter:false">enum IXC_FastRotate
 
{
 
{
     Rotate_90CCW = 0;
+
     Rotate_90CCW = 0,
     Rotate_180 = 1;
+
     Rotate_180   = 1,
     Rotate_270CCW = 2;
+
     Rotate_270CCW = 2,
     Rotate_90CW = 2;
+
     Rotate_90CW   = 2,
     Rotate_270CW = 0;
+
     Rotate_270CW = 0,
 
};
 
};
 
</pre>
 
</pre>
Line 19: Line 19:
 
== Constants ==
 
== Constants ==
 
;Rotate_90CCW
 
;Rotate_90CCW
:The ...
+
:Rotate counter clockwise by 90 degrees.
 
;Rotate_180
 
;Rotate_180
:The ...
+
:Rotate by 180 degrees.
 
;Rotate_270CCW
 
;Rotate_270CCW
:The ...
+
:Rotate counter clockwise by 270 degrees.
 
;Rotate_90CW
 
;Rotate_90CW
:The ...
+
:Rotate clockwise by 90 degrees.
 
;Rotate_270CW
 
;Rotate_270CW
:The ...
+
:Rotate clockwise by 270 degrees.
 +
 
 +
== Remarks ==
 +
Rotating clockwise by 90 degrees = rotating counterclockwise by 270 degrees, and rotating counterclockwise by 90 degrees = rotating clockwise by 270 degrees.
  
 
== See Also ==
 
== See Also ==
See also ...
+
[[PXV:IIXC_Page_Rotate|IIXC_Page::Rotate]]

Latest revision as of 10:41, 26 May 2015

Specifies the angle for rotating.

Syntax

enum IXC_FastRotate
{
    Rotate_90CCW  = 0,
    Rotate_180    = 1,
    Rotate_270CCW = 2,
    Rotate_90CW   = 2,
    Rotate_270CW  = 0,
};

Constants

Rotate_90CCW
Rotate counter clockwise by 90 degrees.
Rotate_180
Rotate by 180 degrees.
Rotate_270CCW
Rotate counter clockwise by 270 degrees.
Rotate_90CW
Rotate clockwise by 90 degrees.
Rotate_270CW
Rotate clockwise by 270 degrees.

Remarks

Rotating clockwise by 90 degrees = rotating counterclockwise by 270 degrees, and rotating counterclockwise by 90 degrees = rotating clockwise by 270 degrees.

See Also

IIXC_Page::Rotate