9 references to SelectionLengthProperty
Microsoft.Maui.Controls (9)
Editor\Editor.cs (2)
47
/// <inheritdoc cref="InputView.
SelectionLengthProperty
"/>
48
public new static readonly BindableProperty SelectionLengthProperty = InputView.
SelectionLengthProperty
;
Entry\Entry.cs (2)
80
/// <inheritdoc cref="InputView.
SelectionLengthProperty
"/>
81
public new static readonly BindableProperty SelectionLengthProperty = InputView.
SelectionLengthProperty
;
InputView\InputView.cs (3)
190
get { return (int)GetValue(
SelectionLengthProperty
); }
191
set { SetValue(
SelectionLengthProperty
, value); }
260
set => SetValue(
SelectionLengthProperty
, value, SetterSpecificity.FromHandler);
SearchBar\SearchBar.cs (2)
55
/// <inheritdoc cref="InputView.
SelectionLengthProperty
"/>
56
public new static readonly BindableProperty SelectionLengthProperty = InputView.
SelectionLengthProperty
;