RichEditSelection.isPictureSelected Property
Gets whether only a picture is selected.
Declaration
get isPictureSelected(): boolean
Property Value
Type | Description |
---|---|
boolean |
|
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