InputConnectionWrapper.EndBatchEdit Method
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.
Tell the editor that you are done with a batch edit previously initiated with beginBatchEdit().
[Android.Runtime.Register("endBatchEdit", "()Z", "GetEndBatchEditHandler")]
public virtual bool EndBatchEdit();
[<Android.Runtime.Register("endBatchEdit", "()Z", "GetEndBatchEditHandler")>]
abstract member EndBatchEdit : unit -> bool
override this.EndBatchEdit : unit -> bool
Returns
For editor authors, you must return true if a batch edit is still in progress after closing the latest one (in other words, if the nesting count is still a positive number). Return false otherwise. For IME authors, you will always receive true as long as the request was sent to the editor, and receive false only if the input connection is no longer valid.
Implements
- Attributes
Remarks
Tell the editor that you are done with a batch edit previously initiated with beginBatchEdit(). This ends the latest batch only.
Java documentation for android.view.inputmethod.InputConnectionWrapper.endBatchEdit().
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.