documentationfor yFiles for HTML 2.6

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 DefaultLabelStyle()
state.addLabel(
  'Folder Label',
  InteriorLabelModel.NORTH_EAST,
  style,
  new Size(20, 10),
  null
)

Type Details

yfiles module
view-folding
yfiles-umd modules
view-folding, view-graphml, view
Legacy UMD name
yfiles.graph.FoldingLabelOwnerState

See Also

Constructors

Properties

Methods