CoreTextEditContext.NotifyTextChanged Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Notifica al servidor de entrada de texto cualquier cambio que el control de entrada de texto necesite realizar en el texto. Esto es importante para mantener el estado interno del control y el estado interno del servidor sincronizado. Dado que también es probable que un cambio en el texto afecte al intervalo de selección, el método toma el intervalo de selección como parámetro.
public:
virtual void NotifyTextChanged(CoreTextRange modifiedRange, int newLength, CoreTextRange newSelection) = NotifyTextChanged;
void NotifyTextChanged(CoreTextRange const& modifiedRange, int const& newLength, CoreTextRange const& newSelection);
public void NotifyTextChanged(CoreTextRange modifiedRange, int newLength, CoreTextRange newSelection);
function notifyTextChanged(modifiedRange, newLength, newSelection)
Public Sub NotifyTextChanged (modifiedRange As CoreTextRange, newLength As Integer, newSelection As CoreTextRange)
Parámetros
- modifiedRange
- CoreTextRange
Intervalo de texto que se va a reemplazar, en términos del estado en el que se encuentra el búfer de texto antes de este cambio de texto.
- newLength
-
Int32
int
Longitud del texto que debe reemplazar modifiedRange.
- newSelection
- CoreTextRange
Intervalo de selección en vigor después del cambio de texto.