Skip to main content
A newer version of this page is available. .

RichEditSelection.isFloatingObjectSelected Property

Gets whether only a floating picture or text box is selected.

Declaration

readonly isFloatingObjectSelected: boolean

Property Value

Type Description
boolean

true, if only a floating picture or text box is selected; otherwise, false.

Remarks

This property allows you to detect when the selection consists only of a floating picture or text box.

Use the isFloatingObjectSelected and isPictureSelected properties to define whether a floating or inline picture is selected.

if (richEdit.selection.isPictureSelected)
      if (richEdit.selection.isFloatingObjectSelected)
          console.log('A floating picture is selected');
      else
          console.log('An in-line picture is selected');

Refer to the following section for more information: Client Selection.

See Also