Back to Devexpress

SubDocument.getFloatingTextBoxInfo Method

aspnet-js-subdocument-9dcb689f.md

latest1.1 KB
Original Source

SubDocument.getFloatingTextBoxInfo Method

Returns information specific for floating text boxes about the sub-document.

Declaration

ts
getFloatingTextBoxInfo(): FloatingTextBoxInfo

Returns

TypeDescription
FloatingTextBoxInfo

An object that contains information about the floating text box.

|

Remarks

The getFloatingTextBoxInfo returns the FloatingTextBoxInfo object only if the sub-document type is TextBox. For other sub-document types, the method returns null.

javascript
if (richEdit.document.activeSubDocument.type == 3)
    var FloatingTextBox = richEdit.document.activeSubDocument.getFloatingTextBoxInfo();

Refer to the following section for more information: Document Elements.

See Also

SubDocument Class

SubDocument Members