documentationfor yFiles for HTML 3.0.0.3

FoldingLabelOwnerState

An abstract base class for data containers representing the state of model items which can own labels.

Inheritance Hierarchy

Remarks

Developers should not extend this class. Only instances of its subclasses FolderNodeState and FoldingEdgeState are supported.

When the properties of the state are changed, these changes are reflected immediately in the views.

Examples

const state = manager.getFolderNodeState(masterNode)
const labelState = state.labels.get(0)
labelState.text = 'New Label Text'
const state = manager.getFolderNodeState(masterNode)
const style = new LabelStyle()
state.addLabel(
  'Folder Label',
  InteriorNodeLabelModel.TOP_RIGHT,
  style,
  new Size(20, 10),
)

Type Details

yFiles module
view

See Also

Constructors

Properties

Methods