1 override of TextView
Microsoft.Maui.Controls.Compatibility (1)
iOS\Renderers\EditorRenderer.cs (1)
34 protected override UITextView TextView => Control;
31 references to TextView
Microsoft.Maui.Controls.Compatibility (31)
iOS\Renderers\EditorRenderer.cs (31)
156 TextView.Changed -= HandleChanged; 157 TextView.Started -= OnStarted; 158 TextView.Ended -= OnEnded; 159 TextView.ShouldChangeText -= ShouldChangeText; 189 TextView.ResignFirstResponder(); 193 TextView.InputAccessoryView = accessoryView; 196 TextView.Changed += HandleChanged; 197 TextView.Started += OnStarted; 198 TextView.Ended += OnEnded; 199 TextView.ShouldChangeText += ShouldChangeText; 200 _pleaseDontCollectMeGarbageCollector = TextView.Delegate; 272 ElementController.SetValueFromRenderer(Editor.TextProperty, TextView.Text); 282 TextView.ScrollRangeToVisible(new NSRange(0, 0)); 289 if (TextView.Text != Element.Text) 290 ElementController.SetValueFromRenderer(Editor.TextProperty, TextView.Text); 304 TextView.Editable = Element.IsEnabled; 305 TextView.UserInteractionEnabled = Element.IsEnabled; 307 if (TextView.InputAccessoryView != null) 308 TextView.InputAccessoryView.Hidden = !Element.IsEnabled; 315 TextView.Font = font; 322 TextView.ApplyKeyboard(keyboard); 329 TextView.SpellCheckingType = UITextSpellCheckingType.No; 336 TextView.AutocorrectionType = UITextAutocorrectionType.No; 340 TextView.ReloadInputViews(); 347 if (TextView.Text != text) 349 TextView.Text = text; 362 TextView.UpdateTextAlignment(Element); 367 => TextView.TextColor = Element.TextColor?.ToPlatform() ?? ColorExtensions.LabelColor; 372 var currentControlText = TextView.Text; 375 TextView.Text = currentControlText.Substring(0, Element.MaxLength); 388 TextView.UserInteractionEnabled = !Element.IsReadOnly;