Evotec

Project

PSWriteHTML

PSWriteHTML is an open-source PowerShell project with packages, release history, and working documentation.

Stars 995
Forks 114
Open issues 69
PowerShell Gallery downloads 7,436,513
Release v1.41.0
Language: PowerShell Updated: 2026-04-11

API Reference

Function

New-DiagramOptionsManipulation

Namespace PSWriteHTML

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

Authored help example

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 Sets

Parameters

AddEdge Nullable`1 optionalposition: 2pipeline: False
Specifies whether the option to add edges is enabled.
AddNode Nullable`1 optionalposition: 1pipeline: False
Specifies whether the option to add nodes is enabled.
DeleteEdge Nullable`1 optionalposition: 6pipeline: False
Specifies whether the option to delete edges is enabled.
DeleteNode Nullable`1 optionalposition: 5pipeline: False
Specifies whether the option to delete nodes is enabled.
EditEdge Nullable`1 optionalposition: 4pipeline: False
Specifies whether the option to edit edges is enabled.
EditNode Nullable`1 optionalposition: 3pipeline: False
Specifies whether the option to edit nodes is enabled.
InitiallyActive Nullable`1 optionalposition: 0pipeline: False
Specifies whether the manipulation tools are initially active upon loading the visualization.