Implemented interface member:
property
Text
Microsoft.Maui.IText.Text
2 writes to Text
Microsoft.Maui.Controls (2)
ViewExtensions.cs (2)
425 entry.Text = text; 430 editor.Text = text;
11 references to Text
Microsoft.Maui.Controls (11)
Editor\Editor.Mapper.cs (1)
15 EditorHandler.Mapper.ReplaceMapping<Editor, IEditorHandler>(nameof(Text), MapText);
Entry\Entry.Mapper.cs (1)
20 EntryHandler.Mapper.ReplaceMapping<Entry, IEntryHandler>(nameof(Text), MapText);
InputView\InputView.cs (4)
11 /// <summary>Bindable property for <see cref="Text"/>.</summary> 12 public static readonly BindableProperty TextProperty = BindableProperty.Create(nameof(Text), typeof(string), typeof(InputView), defaultBindingMode: BindingMode.TwoWay, 175 /// Gets or sets the position of the cursor. The value must be more than or equal to 0 and less or equal to the length of <see cref="InputView.Text"/>. 271 get => Text;
Internals\TextTransformUtilites.cs (1)
53 var formsText = inputView.UpdateFormsText(inputView.Text, textTransform);
Platform\iOS\Extensions\SearchBarExtensions.cs (1)
17 uiSearchBar.Text = TextTransformUtilites.GetTransformedText(searchBar.Text, searchBar.TextTransform);
Platform\iOS\Extensions\TextExtensions.cs (2)
48 var newTextLength = !string.IsNullOrWhiteSpace(inputView.Text) ? textInput.TextInRange(textRange)?.Length ?? 0 : 0; 51 inputView?.Text,
SearchBar\SearchBar.Mapper.cs (1)
15 SearchBarHandler.Mapper.ReplaceMapping<SearchBar, ISearchBarHandler>(nameof(Text), MapText);