Class TextFormatUpdateEvent
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
NOTE
ExperimentalTextFormatUpdateEvent 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.
Constructors
TextFormatUpdateEvent()
public TextFormatUpdateEvent()
TextFormatUpdateEvent(string, TextFormatUpdateEventInit)
NOTE
ExperimentalTextFormatUpdateEvent() constructor returns a new TextFormatUpdateEvent object.
public TextFormatUpdateEvent(string type, TextFormatUpdateEventInit options = null)
Parameters
typestringoptionsTextFormatUpdateEventInit
Remarks
-The TextFormatUpdateEvent interface it belongs to.
Methods
GetTextFormats()
NOTE
ExperimentalgetTextFormats() 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.