TextChangedEventArgs Class
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.
Provides data for the TextChanged and BeforeTextChanged events, describing a change to the text of a TextView.
public class TextChangedEventArgs : EventArgs
type TextChangedEventArgs = class
inherit EventArgs
- Inheritance
-
TextChangedEventArgs
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.
Constructors
| Name | Description |
|---|---|
| TextChangedEventArgs(IEnumerable<Char>, Int32, Int32, Int32) |
Initializes a new instance of the TextChangedEventArgs class. |
Properties
| Name | Description |
|---|---|
| AfterCount |
Gets the number of characters that replace the old text starting at Start. |
| BeforeCount |
Gets the number of characters that are being replaced starting at Start. |
| Start |
Gets the offset in the text where the change began. |
| Text |
Gets the character sequence being reported. For |