-
-
Disables the automatic expansion of all the comments threads in the Notes Panel.
Example
WebViewer(...).then(async function(instance) {
instance.UI.NotesPanel.disableAutoExpandCommentThread()
});
-
<static> disableReplyCollapse()
-
Disables the collapsing of the replies in the Notes Panel.
Example
WebViewer(...).then(async function(instance) {
instance.UI.NotesPanel.disableReplyCollapse()
});
-
<static> disableTextCollapse()
-
Disables the collapsing of the annotation's text in the Notes Panel.
Example
WebViewer(...).then(async function(instance) {
instance.UI.NotesPanel.disableTextCollapse()
});
-
-
Enables the automatic expansion of the comments threads in the Notes Panel.
Example
WebViewer(...).then(async function(instance) {
instance.UI.NotesPanel.enableAutoExpandCommentThread()
});
-
<static> enableReplyCollapse()
-
Enables the collapsing of the replies in the Notes Panel.
Example
WebViewer(...).then(async function(instance) {
instance.UI.NotesPanel.enableReplyCollapse()
});
-
<static> enableTextCollapse()
-
Enables the collapsing of the annotation's text in the Notes Panel.
Example
WebViewer(...).then(async function(instance) {
instance.UI.NotesPanel.enableTextCollapse()
});