Hex Editor - Binary File Editing Software for Windows
Download Hex Editor Neo Hide this button

ITextPosition Interface

This interface represents a position in a text file.

Declaration

interface ITextPosition {
    // Properties
    ${line}: number;
    ${position}: number;
}
// This interface is not available in managed environment
// This interface is not available in native environment

ITextPosition Properties

line

line: number;
// This property is not available in managed environment
// This property is not available in native environment

Line number. Line counting starts from 1.

position

position: number;
// This property is not available in managed environment
// This property is not available in native environment

Position of a character in a line. Position counting starts from zero.