Class DrawLineMarkEventArgs
Provides data for the DrawLineMark event of the EditControl control.
Inheritance
System.Object
System.EventArgs
DrawLineMarkEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Edit
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public class DrawLineMarkEventArgs : EventArgs
Constructors
DrawLineMarkEventArgs(Graphics, Rectangle, Int32, Int32)
Initializes a new instance of the DrawLineMarkEventArgs class.
Declaration
public DrawLineMarkEventArgs(Graphics graphics, Rectangle markRect, int iVirtualLine, int iPhysicalLine)
Parameters
Type | Name | Description |
---|---|---|
System.Drawing.Graphics | graphics | Graphics objects where user has to draw line marks. |
System.Drawing.Rectangle | markRect | Rectangle where line mark should be drawn. |
System.Int32 | iVirtualLine | Virtual number of the line. |
System.Int32 | iPhysicalLine | Physical number of the line. |
Fields
CustomDraw
Gets a value indicating whether the user handles drawing of the bookmark.
Declaration
public bool CustomDraw
Field Value
Type |
---|
System.Boolean |
Graphics
Holds the Graphics object.
Declaration
public readonly Graphics Graphics
Field Value
Type |
---|
System.Drawing.Graphics |
MarkRect
Holds the rectangle where line mark should be drawn.
Declaration
public readonly Rectangle MarkRect
Field Value
Type |
---|
System.Drawing.Rectangle |
PhysicalLine
Holds the physical line number.
Declaration
public readonly int PhysicalLine
Field Value
Type |
---|
System.Int32 |
VirtualLine
Holds the virtual line number.
Declaration
public readonly int VirtualLine
Field Value
Type |
---|
System.Int32 |