From 4d872824dbe2c70e30d9624ba6698c39594559c8 Mon Sep 17 00:00:00 2001 From: euu <77707706+euu2021@users.noreply.github.com> Date: Tue, 2 Jan 2024 14:46:56 -0300 Subject: [PATCH] Update reference.groovy --- src/docs/scripting/reference.groovy | 32 +++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/src/docs/scripting/reference.groovy b/src/docs/scripting/reference.groovy index 4572b8b..9a8cba0 100644 --- a/src/docs/scripting/reference.groovy +++ b/src/docs/scripting/reference.groovy @@ -566,6 +566,38 @@ node.geometry.getShape() node.geometry.getVerticalMargin() +/* + NodeRO +*/ + +// Returns the date that the node was created. + +node.getCreatedAt() + +// Returns the text of the details as a Convertible. + +node.getDetails() + +// Returns details content type. + +node.getDetailsContentType() + +// Returns the raw HTML text of the details if there is any or null otherwise. + +node.getDetailsText() + +// Plain or HTML text of this node after possible transformation (formula evaluation, formatting, ...) + +node.getDisplayedText() + +// Returns the format string of the formatter if available and null otherwise. + +node.getFormat() + +// Returns true if node details are hidden. + +node.getHideDetails() + /* NodeStyleRO */