Package org.freeplane.api
Interface BorderRO
- All Known Subinterfaces:
- Border,- Proxy.Border,- Proxy.BorderRO
public interface BorderRO
Border to parent node: 
node.style.border - read-only.- Since:
- 1.11.8
 Example: def msg = "" msg += "this node has border line type '$node.style.border.dash' set" msg += node.style.border.usesEdgeDash?',\nbut actually it shows the same line type as the node\'s edge':'' ui.informationMessage(msg) Example:def myText = new StringBuilder('|parameter|value|is set?|\n|:---|:---:|:---:|\n') node.style.border.with{ myText << '|width|' + width + '|' + widthSet + '|\n' << '|usesEdgeWidth|' + usesEdgeWidth + '|' + usesEdgeWidthSet + '|\n' << '|usesEdgeDash|' + usesEdgeDash + '|' + usesEdgeDashSet + '|\n' << '|dash|' + dash + '|' + dashSet + '|\n' << '|usesEdgeColor|' + usesEdgeColor + '|' + usesEdgeColorSet + '|\n' << '|color|' + color + ' ( ' + colorCode + ' )|' + colorSet + '|\n' } def outputNode = node.createChild('border parameters in node\'s note') outputNode.note = myText.toString() outputNode.noteContentType = 'markdown'
- 
Method Details- 
getColorColor getColor()
- 
getColorCodeString getColorCode()
- 
isColorSetboolean isColorSet()
- 
getWidthQuantity<LengthUnit> getWidth()
- 
isWidthSetboolean isWidthSet()
- 
getDashDash getDash()
- 
isDashSetboolean isDashSet()
- 
getUsesEdgeColorboolean getUsesEdgeColor()
- 
getUsesEdgeWidthboolean getUsesEdgeWidth()
- 
getUsesEdgeDashboolean getUsesEdgeDash()
- 
isUsesEdgeColorSetboolean isUsesEdgeColorSet()
- 
isUsesEdgeWidthSetboolean isUsesEdgeWidthSet()
- 
isUsesEdgeDashSetboolean isUsesEdgeDashSet()
 
-