-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpowershell-visio-automation-2.ps1
35 lines (29 loc) · 1.11 KB
/
powershell-visio-automation-2.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Set-StrictMode -Version 2
$ErrorActionPreference = "Stop"
Import-Module Visio
$app= New-VisioApplication
$doc = New-VisioDocument
$stencil_net = Open-VisioDocument "Basic Network Diagram.vst"
$stencil_comp = Open-VisioDocument "Computers and Monitors.vss"
$pc_master = Get-VisioMaster "PC" $stencil_comp
$shapes = New-VisioShape -Masters $pc_master -Points 2.2,6.8
Set-VisioText "Some Text..."
Set-VisioCustomProperty -Name "prop1" -Value "val1"
Set-VisioCustomProperty -Name "prop2" -Value "val2"
$shapedata_col = Get-VisioCustomProperty -Shapes $shapes
foreach ($shapedata in $shapedata_col)
{
Write-Host "--------------------------------------"
Write-Host Name $shapedata.Name
Write-Host Type $shapedata.Type
Write-Host Value $shapedata.Value
Write-Host Prompt $shapedata.Prompt
Write-Host Ask $shapedata.Ask
Write-Host Calendar $shapedata.Calendar
Write-Host Format $shapedata.Format
Write-Host Invisible $shapedata.Invisible
Write-Host Label $shapedata.Label
Write-Host LangId $shapedata.LangId
Write-Host ShapeID $shapedata.ShapeID
Write-Host SortKey $shapedata.SortKey
}