File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -1488,6 +1488,28 @@ if (-not $this.'.Fill') {
1488
1488
}
1489
1489
</SetScriptBlock >
1490
1490
</ScriptProperty >
1491
+ <ScriptProperty >
1492
+ <Name >FillRule</Name >
1493
+ <GetScriptBlock >
1494
+ if (-not $this.'.PathAttribute') {
1495
+ $this | Add-Member -MemberType NoteProperty -Name '.PathAttribute' -Value ([Ordered]@{}) -Force
1496
+ }
1497
+ if ($this.'.PathAttribute'.'fill-rule') {
1498
+ return $this.'.PathAttribute'.'fill-rule'
1499
+ } else {
1500
+ 'nonzero'
1501
+ }
1502
+ </GetScriptBlock >
1503
+ <SetScriptBlock >
1504
+ param(
1505
+ [ValidateSet('nonzero', 'evenodd')]
1506
+ [string]
1507
+ $fillRule = 'nonzero'
1508
+ )
1509
+ $this.PathAttribute = [Ordered]@{'fill-rule' = $fillRule.ToLower()}
1510
+
1511
+ </SetScriptBlock >
1512
+ </ScriptProperty >
1491
1513
<ScriptProperty >
1492
1514
<Name >Heading</Name >
1493
1515
<GetScriptBlock >
You can’t perform that action at this time.
0 commit comments