Members of this enumeration can be passed as parameters to the AddAnchorPoint method of an AnchorPattern to specify what the marks drawn a anchor point locations should look like.
SyntaxVB6
Copy Code
|
|---|
Public Enum EMarkStyle |
C++
Copy Code
|
|---|
enum EMarkStyle |
Members| Member name | Value | Description | |
|---|---|---|---|
![]() |
msNone |
0 | Do not indicate visually the anchor point location. |
![]() |
msCross |
1 | Draw a cross at the anchor point location. |
![]() |
msX |
2 | Draw an X at the anchor point location. |
![]() |
msCircle |
3 | Draw a circle at the anchor point location. |
![]() |
msRect |
4 | Draw a rectangle at the anchor point location. |
![]() |
msCustom |
5 | Raise the DrawMark event to custom-draw the anchor point. |
See Also