TextBufferPropertyName

public enum TextBufferPropertyName : String, PropertyNameProtocol

Undocumented

  • Denotes that the buffer can reapply the last undone action.

    Declaration

    Swift

    case canRedo = "can-redo"
  • Denotes that the buffer can undo the last applied action.

    Declaration

    Swift

    case canUndo = "can-undo"
  • The position of the insert mark.

    This is an offset from the beginning of the buffer. It is useful for getting notified when the cursor moves.

    Declaration

    Swift

    case cursorPosition = "cursor-position"
  • Denotes if support for undoing and redoing changes to the buffer is allowed.

    Declaration

    Swift

    case enableUndo = "enable-undo"
  • Whether the buffer has some text currently selected.

    Declaration

    Swift

    case hasSelection = "has-selection"
  • The GtkTextTagTable for the buffer.

    Declaration

    Swift

    case tagTable = "tag-table"
  • The text content of the buffer.

    Without child widgets and images, see [methodGtk.TextBuffer.get_text] for more information.

    Declaration

    Swift

    case text = "text"