Class CharacterBoundsUpdateEvent
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
NOTE
ExperimentalCharacterBoundsUpdateEvent interface is a DOM event that represents a request from the operating system to know the bounds of certain characters within an editable region that's attached to an EditContext instance.
[Value("CharacterBoundsUpdateEvent")]
public class CharacterBoundsUpdateEvent : Event
- Inheritance
-
CharacterBoundsUpdateEvent
- Inherited Members
Remarks
This interface inherits properties from Event.
Constructors
CharacterBoundsUpdateEvent()
public CharacterBoundsUpdateEvent()
CharacterBoundsUpdateEvent(string, CharacterBoundsUpdateEventInit)
NOTE
ExperimentalCharacterBoundsUpdateEvent() constructor returns a new CharacterBoundsUpdateEvent object.
public CharacterBoundsUpdateEvent(string type, CharacterBoundsUpdateEventInit options = null)
Parameters
typestringoptionsCharacterBoundsUpdateEventInit
Remarks
-The CharacterBoundsUpdateEvent interface it belongs to.
Properties
RangeEnd
NOTE
ExperimentalCharacterBoundsUpdateEvent.rangeEnd read-only property represents the offset of the last character within the editable text region for which the operating system needs the bounds.
[Value("rangeEnd")]
public ulong RangeEnd { get; }
Property Value
Remarks
RangeStart
NOTE
ExperimentalCharacterBoundsUpdateEvent.rangeStart read-only property represents the offset of the first character within the editable text region for which the operating system needs the bounds.
[Value("rangeStart")]
public ulong RangeStart { get; }