Class ParsePointParameterChangedEventArgs
Provides data for the ParsePointParameterChangedEventHandler.
Inheritance
System.Object
System.EventArgs
ParsePointParameterChangedEventArgs
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 ParsePointParameterChangedEventArgs : EventArgs
Constructors
ParsePointParameterChangedEventArgs(Int64, Int64, Int32, Int32, Int32, Int32)
Initializes a new instance of ParsePointParameterChangedEventArgs the class.
Declaration
public ParsePointParameterChangedEventArgs(long oldOffset, long newOffset, int oldPos, int newPos, int oldLine, int newLine)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | oldOffset | Old point offset. |
System.Int64 | newOffset | New point offset. |
System.Int32 | oldPos | Old point position. |
System.Int32 | newPos | New point position. |
System.Int32 | oldLine | Old point line. |
System.Int32 | newLine | New point line. |
Fields
NewLine
Holds the new value of point line.
Declaration
public int NewLine
Field Value
Type |
---|
System.Int32 |
NewOffset
Holds the new value of point offset.
Declaration
public long NewOffset
Field Value
Type |
---|
System.Int64 |
NewPosition
Holds the new value of point position.
Declaration
public int NewPosition
Field Value
Type |
---|
System.Int32 |
OldLine
Holds the old value of point line.
Declaration
public int OldLine
Field Value
Type |
---|
System.Int32 |
OldOffset
Holds the old value of point offset.
Declaration
public long OldOffset
Field Value
Type |
---|
System.Int64 |
OldPosition
Holds the old value of point position.
Declaration
public int OldPosition
Field Value
Type |
---|
System.Int32 |
Properties
LineChanged
Gets a value indicating whether line has been changed.
Declaration
public bool LineChanged { get; }
Property Value
Type |
---|
System.Boolean |
OffsetChanged
Gets a value indicating whether offset has been changed.
Declaration
public bool OffsetChanged { get; }
Property Value
Type |
---|
System.Boolean |
PositionChanged
Gets a value indicating whether position has been changed.
Declaration
public bool PositionChanged { get; }
Property Value
Type |
---|
System.Boolean |