Interface IParsePoint
Provides the functionality for getting the parse point from which lexem started in stream.
Namespace: Syncfusion.Windows.Forms.Edit.Interfaces
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public interface IParsePoint
Properties
IsValid
Gets a value indicating whether the parsepoint is valid or not.
Declaration
bool IsValid { get; }
Property Value
Type |
---|
System.Boolean |
Line
Gets the line from which parse point started.
Declaration
int Line { get; }
Property Value
Type |
---|
System.Int32 |
Offset
Gets the Offset in the inner stream.
Declaration
long Offset { get; }
Property Value
Type |
---|
System.Int64 |
Position
Gets the position of line where lexem started.
Declaration
int Position { get; }
Property Value
Type |
---|
System.Int32 |
Events
Deleted
Occurs when point is deleted from collection and became unreliable.
Declaration
event ParsePointDeletedEventHandler Deleted
Event Type
Type |
---|
ParsePointDeletedEventHandler |
ParsePointParameterChanged
Occurs when some parameter of parse point has been changed.
Declaration
event ParsePointParameterChangedEventHandler ParsePointParameterChanged
Event Type
Type |
---|
ParsePointParameterChangedEventHandler |