enum Gtk::AccessibleAutocomplete

Overview

The possible values for the %GTK_ACCESSIBLE_PROPERTY_AUTOCOMPLETE accessible property.

Defined in:

lib/gi-crystal/src/auto/gtk-4.0/gtk.cr

Enum Members

None = 0_u32

Automatic suggestions are not displayed.

Inline = 1_u32

When a user is providing input, text suggesting one way to complete the provided input may be dynamically inserted after the caret.

List = 2_u32

When a user is providing input, an element containing a collection of values that could complete the provided input may be displayed.

Both = 3_u32

When a user is providing input, an element containing a collection of values that could complete the provided input may be displayed. If displayed, one value in the collection is automatically selected, and the text needed to complete the automatically selected value appears after the caret in the input.

Class Method Summary

Instance Method Summary

Class methods inherited from struct Enum

g_type : UInt64 g_type

Class Method Detail

def self.g_type : UInt64 #

Returns the type id (GType) registered in GLib type system.


[View source]

Instance Method Detail

def both? #

Returns true if this enum value equals Both


[View source]
def inline? #

Returns true if this enum value equals Inline


[View source]
def list? #

Returns true if this enum value equals List


[View source]
def none? #

Returns true if this enum value equals None


[View source]