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

RichEditSelection.isPictureSelected Property

Gets whether only a picture is selected.

Declaration

readonly isPictureSelected: boolean

Property Value

Type Description
boolean

true, if only a picture is selected; otherwise, false.

Remarks

This property allows you to detect when the selection consists only of a picture.

Use the isFloatingObjectSelected property to detect whether a floating or in-line 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