C# Class NppSharp.TextLocation

Represents a character position within the document.
Afficher le fichier Open project: cmrazek/NppSharp Class Usage Examples

Méthodes publiques

Свойство Type Description
Start TextLocation

Méthodes publiques

Méthode Description
Equals ( object obj ) : bool

Compares equality between this object and another TextLocation.

FromByteOffset ( int offset ) : TextLocation

Find the text location for a byte offset.

If the offset happens to land in the middle of a multi-byte character, this function will return a text location pointing to the character that begins just prior to the offset.

If the offset is before the start of the document (a negative number), then a location pointing to the start of the document will be returned.

If the offset is after the end of the document, then a location pointing to the end of the document will be returned.

GetHashCode ( ) : int

Returns a hash code for this object.

TextLocation ( TextLocation c ) : System.Linq

Copies a text location object.

TextLocation ( int line, int charPos ) : System.Linq

Creates a text location object with a specific line and column.

ToString ( ) : string

Returns a string representation of this location.

operator ( ) : TextLocation

Moves the text location by a specified number of characters.

operator ( ) : bool

Compares inequality between two TextLocation objects.

Method Details

Equals() public méthode

Compares equality between this object and another TextLocation.
public Equals ( object obj ) : bool
obj object The object that will be compared.
Résultat bool

FromByteOffset() public static méthode

Find the text location for a byte offset.

If the offset happens to land in the middle of a multi-byte character, this function will return a text location pointing to the character that begins just prior to the offset.

If the offset is before the start of the document (a negative number), then a location pointing to the start of the document will be returned.

If the offset is after the end of the document, then a location pointing to the end of the document will be returned.

public static FromByteOffset ( int offset ) : TextLocation
offset int The zero-based byte offset to find.
Résultat TextLocation

GetHashCode() public méthode

Returns a hash code for this object.
public GetHashCode ( ) : int
Résultat int

TextLocation() public méthode

Copies a text location object.
public TextLocation ( TextLocation c ) : System.Linq
c TextLocation The location to be copied.
Résultat System.Linq

TextLocation() public méthode

Creates a text location object with a specific line and column.
public TextLocation ( int line, int charPos ) : System.Linq
line int The one-based line number.
charPos int The one-based character position.
Résultat System.Linq

ToString() public méthode

Returns a string representation of this location.
public ToString ( ) : string
Résultat string

operator() public static méthode

Moves the text location by a specified number of characters.
public static operator ( ) : TextLocation
Résultat TextLocation

operator() public static méthode

Compares inequality between two TextLocation objects.
public static operator ( ) : bool
Résultat bool

Property Details

Start public_oe static_oe property

A location representing the start of the document (line 1, character position 1).
public static TextLocation,NppSharp Start
Résultat TextLocation