4 references to CursorPosition
Microsoft.Maui.Controls (4)
InputView\InputView.cs (4)
46
/// <summary>Bindable property for <see cref="
CursorPosition
"/>.</summary>
47
public static readonly BindableProperty CursorPositionProperty = BindableProperty.Create(nameof(
CursorPosition
), typeof(int), typeof(InputView), 0, validateValue: (b, v) => (int)v >= 0);
185
/// Gets or sets the length of the selection. The selection will start at <see cref="
CursorPosition
"/>.
265
get =>
CursorPosition
;