PXC_ReplyType Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:PXC_ReplyType Enumeration}}
 
{{#customTitle:PXC_ReplyType Enumeration}}
{{#parentPage:PXV:PXC|PXC_ReplyType Enumeration|enum}}
+
{{#parentPage:PXV:PXC_Enumerations|PXC_ReplyType|enum}}
{{ToWrite}}
+
 
{{ToReview}}
 
{{ToReview}}
  
Specifies the ...
+
This enumeration contains possible values of [[PXV:IPXC_Annotation_ReplyType|IPXС_Annotation::ReplyType]] property.
  
 
== Syntax ==
 
== Syntax ==
 
<pre class="brush:cpp;gutter:false">enum PXC_ReplyType
 
<pre class="brush:cpp;gutter:false">enum PXC_ReplyType
 
{
 
{
     RT_None  = 0;
+
     RT_None  = 0,
     RT_Reply  = 1;
+
     RT_Reply  = 1,
     RT_State  = 2;
+
     RT_State  = 2,
     RT_Group  = 3;
+
     RT_Group  = 3,
     _RT_Last_ = 4;
+
     _RT_Last_ = 4,
 
};
 
};
 
</pre>
 
</pre>
Line 20: Line 20:
 
== Constants ==
 
== Constants ==
 
;RT_None
 
;RT_None
:The ...
+
:Annotations are not related to each other.
 
;RT_Reply
 
;RT_Reply
:The ...
+
:Annotation is a reply to the [[PXV:IPXC_Annotation_ReplyTo|related]] annotation.
 
;RT_State
 
;RT_State
:The ...
+
:Annotation describes ''state'' of [[PXV:IPXC_Annotation_ReplyTo|related]] annotation.
 
;RT_Group
 
;RT_Group
:The ...
+
:Annotation is grouped with [[PXV:IPXC_Annotation_ReplyTo|related]] annotation.
 
;_RT_Last_
 
;_RT_Last_
:The ...
+
:The last defined value in the enumeration. Can be used for range checking.
  
 
== See Also ==
 
== See Also ==
See also ...
+
[[PXV:IPXC_Annotation_ReplyType|IPXC_Annotation::ReplyType]], [[PXV:IPXC_Annotation_ReplyTo|IPXС_Annotation::ReplyTo]]

Latest revision as of 09:25, 27 May 2015


This enumeration contains possible values of IPXС_Annotation::ReplyType property.

Syntax

enum PXC_ReplyType
{
    RT_None   = 0,
    RT_Reply  = 1,
    RT_State  = 2,
    RT_Group  = 3,
    _RT_Last_ = 4,
};

Constants

RT_None
Annotations are not related to each other.
RT_Reply
Annotation is a reply to the related annotation.
RT_State
Annotation describes state of related annotation.
RT_Group
Annotation is grouped with related annotation.
_RT_Last_
The last defined value in the enumeration. Can be used for range checking.

See Also

IPXC_Annotation::ReplyType, IPXС_Annotation::ReplyTo