Table of Contents

Class TextFormatUpdateEvent

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll
NOTE
Experimental
The TextFormatUpdateEvent interface is a DOM event that represents a list of text formats that an {{glossary("Input Method Editor")}} (IME) window wants to apply to the text being composed in an editable region that's attached to an EditContext instance.
[Value("TextFormatUpdateEvent")]
public class TextFormatUpdateEvent : Event
Inheritance
TextFormatUpdateEvent
Inherited Members

Remarks

This interface inherits properties from Event.

See also on MDN

Constructors

TextFormatUpdateEvent()

public TextFormatUpdateEvent()

TextFormatUpdateEvent(string, TextFormatUpdateEventInit)

NOTE
Experimental
The TextFormatUpdateEvent() constructor returns a new TextFormatUpdateEvent object.
public TextFormatUpdateEvent(string type, TextFormatUpdateEventInit options = null)

Parameters

type string
options TextFormatUpdateEventInit

Remarks

-The TextFormatUpdateEvent interface it belongs to.

See also on MDN

Methods

GetTextFormats()

NOTE
Experimental
The getTextFormats() method of the TextFormatUpdateEvent interface returns an {{jsxref("Array")}} of TextFormat objects that represent the formats that an {{glossary("Input Method Editor")}} (IME) window wants to apply to the text being composed.
[Value("getTextFormats")]
public List<TextFormat> GetTextFormats()

Returns

List<TextFormat>

An {{jsxref("Array")}} containing TextFormat objects.

Remarks