API Reference
Function
New-DiagramOptionsManipulation
Creates a new object for manipulating diagram options in a network visualization.
Remarks
This function creates a new object that allows manipulation of diagram options in a network visualization. It provides options to control the initial state of manipulation tools and specify which manipulation actions are allowed.
Examples
EXAMPLE 1
$options = New-DiagramOptionsManipulation -InitiallyActive $true -AddNode $true -AddEdge $true
Creates a new object with manipulation options where adding nodes and edges is allowed and the manipulation tools are initially active.
Common Parameters
This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters.
Syntax
New-DiagramOptionsManipulation [-AddEdge <Nullable`1>] [-AddNode <Nullable`1>] [-DeleteEdge <Nullable`1>] [-DeleteNode <Nullable`1>] [-EditEdge <Nullable`1>] [-EditNode <Nullable`1>] [-InitiallyActive <Nullable`1>] [<CommonParameters>]
#
Parameter set:
All Parameter SetsParameters
- AddEdge Nullable`1
- Specifies whether the option to add edges is enabled.
- AddNode Nullable`1
- Specifies whether the option to add nodes is enabled.
- DeleteEdge Nullable`1
- Specifies whether the option to delete edges is enabled.
- DeleteNode Nullable`1
- Specifies whether the option to delete nodes is enabled.
- EditEdge Nullable`1
- Specifies whether the option to edit edges is enabled.
- EditNode Nullable`1
- Specifies whether the option to edit nodes is enabled.
- InitiallyActive Nullable`1
- Specifies whether the manipulation tools are initially active upon loading the visualization.