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)
193 get { return (int)GetValue(SelectionLengthProperty); } 194 set { SetValue(SelectionLengthProperty, value); } 263 set => SetValue(SelectionLengthProperty, value, SetterSpecificity.FromHandler);
SearchBar\SearchBar.cs (2)
58 /// <inheritdoc cref="InputView.SelectionLengthProperty"/> 59 public new static readonly BindableProperty SelectionLengthProperty = InputView.SelectionLengthProperty;