We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Turtle.get/set_SVGAttribute
1 parent 9c12806 commit c98bdf6Copy full SHA for c98bdf6
Types/Turtle/set_SVGAttribute.ps1
@@ -1,11 +1,11 @@
1
param(
2
[Collections.IDictionary]
3
-$PathAttribute = [Ordered]@{}
+$SVGAttribute = [Ordered]@{}
4
)
5
6
-if (-not $this.'.PathAttribute') {
7
- $this | Add-Member -MemberType NoteProperty -Name '.PathAttribute' -Value ([Ordered]@{}) -Force
+if (-not $this.'.SVGAttribute') {
+ $this | Add-Member -MemberType NoteProperty -Name '.SVGAttribute' -Value ([Ordered]@{}) -Force
8
}
9
-foreach ($key in $PathAttribute.Keys) {
10
- $this.'.PathAttribute'[$key] = $PathAttribute[$key]
+foreach ($key in $SVGAttribute.Keys) {
+ $this.'.SVGAttribute'[$key] = $SVGAttribute[$key]
11
0 commit comments