Documentation
|
Public Member Functions | |
Stamp (Pen^ pen, MSTAnnotationPage^ page) | |
virtual void | Draw (Graphics^ g, array< PointF >^ptArr, bool bShowSelection) override |
Used to draw annotations. More... | |
virtual void | Load (System::Xml::XmlElement^ element) override |
virtual void | Save (XmlDocument^ writer, XmlElement^ element) override |
use to save annotation in XML. More... | |
Public Member Functions inherited from MST::Imaging::Annotations::Rectangle | |
Rectangle (Pen^ pen, MSTAnnotationPage^ page) | |
virtual void | Draw (GraphicsPath^ gp, array< PointF >^ptArr) override |
Public Member Functions inherited from MST::Imaging::Annotations::TwoPointAnnotation | |
TwoPointAnnotation (Pen^ pen, MSTAnnotationPage^ page) | |
Public Member Functions inherited from MST::Imaging::Annotations::MSTAnnotation | |
MSTAnnotation (Pen^ pen, MSTAnnotationPage^ page) | |
Constructor of a class. More... | |
void | DrawPoints (Graphics^ g) |
Draw Selection points of annotation. More... | |
array< PointF >^ | GetNormalPoints () |
Gives points array of annotation without any operation such as without rotation,zooming,flip etc. More... | |
virtual void | Load (XmlElement^ element) |
use to load annotation from XML. More... | |
void | FlipGraphicsPath (GraphicsPath^ gp, float Width, float Height, bool bHorz, bool bVert) |
Flips annotation's graphics path. More... | |
void | DrawString (Graphics^ g, String^ text, Point location) |
Draw String. More... | |
void | DrawScale (GraphicsPath^ g, PointF pt1, PointF pt2, float distance) |
virtual void | Move (int cx, int cy) |
Use to move annotation. More... | |
virtual bool | HitTest (PointF pt) |
use to check point lies in annotation or not More... | |
virtual bool | IntersectsRect (System::Drawing::Rectangle rect) |
use to check annotation lies in rectangle or not. More... | |
virtual void | ApplyMatrix (Matrix^ matrix) |
use to apply matrix on graphicsPath. More... | |
virtual Int16 | GetPointIndex (PointF pt) |
use to get index of point. More... | |
void | Burn (Graphics^ g) |
Protected Attributes | |
Color | m_TextColor |
String^ | m_sText |
Font^ | m_font |
Image^ | m_Image |
Protected Attributes inherited from MST::Imaging::Annotations::MSTAnnotation | |
Pen^ | m_pen |
array< PointF >^ | m_ptArr |
MSTAnnotationPage^ | m_pPage |
bool | m_bSelected |
Properties | |
Type | AnnotationType [get] |
String^ | Text [get, set] |
Image^ | StampImage [get, set] |
System::Drawing::Color | TextColor [get, set] |
System::Drawing::Font^ | font [get, set] |
Properties inherited from MST::Imaging::Annotations::Rectangle | |
Color | FillColor [get, set] |
Type | AnnotationType [get] |
PointF | Points[Int16] [get, set] |
Properties inherited from MST::Imaging::Annotations::MSTAnnotation | |
Type | AnnotationType [get] |
Get type of annotation. | |
Color | BorderColor [get, set] |
Get or Set annotation's border color. | |
Int32 | BorderWidth [get, set] |
Get or Set annotation's border width. | |
bool | Selected [get, set] |
Get or Set annotation's selection. | |
array< PointF >^ | Points [get] |
Get Points of annotation. More... | |
PointF | Points[Int16] [get, set] |
System::Drawing::Drawing2D::GraphicsPath^ | graphicsPath [get] |
Get annotation's graphicsPath. | |
array< RectangleF >^ | PointRect [get] |
Get rectangles arround points. | |
Int16 | PointsCount [get] |
Get total number of annotation's points. | |
Additional Inherited Members | |
Static Protected Member Functions inherited from MST::Imaging::Annotations::MSTAnnotation | |
static bool | IsLineIntersectsRect (array< PointF >^pts, System::Drawing::Rectangle rect) |
use to check line intersect with rectangle or not. More... | |
static double | getdistance (PointF start, PointF end, float fPixelWidth, float fPixelHeight) |
|
overridevirtual |
Used to draw annotations.
g | graphics which is used to draw annotation. |
Reimplemented from MST::Imaging::Annotations::Rectangle.
|
overridevirtual |
use to save annotation in XML.
writer | XML document in which annoation is saved. |
element | XML element. |
Reimplemented from MST::Imaging::Annotations::Rectangle.