Interface InlineTextRenderGroup

In-place text. Instead of representing an existing range of text (the text range is 0-sized, and the start of the range is the offset where the in-place text should be inserted), this render group represents a piece of text that is not present in the original text. This is useful for inserting ellipsis on overflow.

interface InlineTextRenderGroup {
    overridesWidth: boolean;
    rangeEnd: number;
    rangeStart: number;
    right: number;
    text: string;
    type: Inline;
    visible: boolean;
}

Hierarchy (view full)

Properties

overridesWidth: boolean
rangeEnd: number
rangeStart: number
right: number
text: string
type: Inline
visible: boolean