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.
Font.Glyph.Save()
1 parent 9e33cd5 commit d28ea3fCopy full SHA for d28ea3f
Font.types.ps1xml
@@ -22,6 +22,17 @@
22
<Type>
23
<Name>Font.Glyph</Name>
24
<Members>
25
+ <ScriptMethod>
26
+ <Name>Save</Name>
27
+ <Script>
28
+ param([string]$FilePath)
29
+
30
+$unresolvedPath = $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($FilePath)
31
+$createdFile = New-Item -ItemType File -Path $unresolvedPath
32
+$this.SVG.Save($createdFile.FullName)
33
+Get-Item -LiteralPath $createdFile.FullName
34
+ </Script>
35
+ </ScriptMethod>
36
<ScriptProperty>
37
<Name>Motion</Name>
38
<GetScriptBlock>
0 commit comments