Table of Contents

Class CharacterBoundsUpdateEvent

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll
NOTE
Experimental
The CharacterBoundsUpdateEvent 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.

See also on MDN

Constructors

CharacterBoundsUpdateEvent()

public CharacterBoundsUpdateEvent()

CharacterBoundsUpdateEvent(string, CharacterBoundsUpdateEventInit)

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

Parameters

type string
options CharacterBoundsUpdateEventInit

Remarks

-The CharacterBoundsUpdateEvent interface it belongs to.

See also on MDN

Properties

RangeEnd

NOTE
Experimental
The CharacterBoundsUpdateEvent.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

ulong

A Number.

Remarks

RangeStart

NOTE
Experimental
The CharacterBoundsUpdateEvent.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; }

Property Value

ulong

A Number.

Remarks