TextChangedEventArgs(IEnumerable<Char>, Int32, Int32, Int32) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the TextChangedEventArgs class.
public TextChangedEventArgs(System.Collections.Generic.IEnumerable<char>? text, int start, int before, int after);
new Android.Text.TextChangedEventArgs : seq<char> * int * int * int -> Android.Text.TextChangedEventArgs
Parameters
- text
- IEnumerable<Char>
The character sequence being reported. For BeforeTextChanged this is the text before the change; for TextChanged this is the text after the change.
- start
- Int32
The offset in the text where the change began.
- before
- Int32
The number of characters that are being replaced starting at start.
- after
- Int32
The number of characters that replace the old text starting at start.
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.