mcGraphObjBorderStyle Enumeration
|
|
Legal valued for the McGraphObj.BorderStyle property.
Namespace:
MediaCy.IQL.Display.Overlays
Assembly:
MediaCy.IQL.Display.Overlays (in MediaCy.IQL.Display.Overlays.dll) Version: 10.0.6912.0
SyntaxPublic Enumeration mcGraphObjBorderStyle
Members
| Member name | Value | Description |
---|
| mcgbsSolid | 0 | The border is a solid line. |
| mcgbsDash | 1 | The border is a series of dashes. |
| mcgbsDot | 2 | The border is a series of dots. |
| mcgbsDashDot | 3 | The border alternates dots and dashes. |
| mcgbsDashDotDot | 4 | The border alternates dashes, and dot pairs. |
| mcgbsCornersMitered | 0 | Mitered corners are the default for wide borders. Youcan or this value in with the base style emphasize this, though it is not necessary to
do so to get mitered corners on wide lines. |
| mcgbsCornersRounded | 16 | Or this value in with the base style to get roundedcorners on wide lines |
| mcgbsCornersBeveled | 32 | Or this value in with the base style to get beveledcorners on wide lines. |
| mcgbsZoomWidthDisabled | 0 | By default, the BorderWidth property specifiesa constant line width in screen pixels; as the image is zoomed in or out, the width of
the line stays constant on the screen. The mcgbsZoomWidthIfWide or mcgbsZoomWidth
flags will modify this default behavior by causing the displayed border or line width
to scale with the zoom of the displayed image. |
| mcgbsZoomWidthIfWide | 256 | Or this value in with the base style to zoomthe displayed width of lines with BorderWidth greater than 1. |
| mcgbsZoomWidth | 512 | Or this value in with the base style to zoomthe displayed width of lines with any BorderWidth, including a value of 1. |
| mcgbsMaskBaseStyle | 15 | mask for the basic border style, without corner modifier flag |
| mcgbsMaskCornerStyle | 48 | mask for the allowed corner modifier flag values |
| mcgbsMaskZoomWidth | 768 | mask for the allowed width zooming flag values |
RemarksThe mcGraphObjBorderStyle enumeration consists of two parts: a basic border
style (solid, dashed, etcetera), an optional flag to indicate how the corners should
be drawn for wide lines and another optional flag to specify if the displayed line
width should zoom with the image.
See Also