MetafileExtensionsSaveAsEmf(Metafile, String) Method
Saves the specified metafile to the specified file as an EMF (Enhanced Metafile) using Windows API.
Namespace: KGySoft.DrawingAssembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 10.1.0
public static void SaveAsEmf(
this Metafile metafile,
string fileName
)
<ExtensionAttribute>
Public Shared Sub SaveAsEmf (
metafile As Metafile,
fileName As String
)
public:
[ExtensionAttribute]
static void SaveAsEmf(
Metafile^ metafile,
String^ fileName
)
[<ExtensionAttribute>]
static member SaveAsEmf :
metafile : Metafile *
fileName : string -> unit
- metafile Metafile
- The Metafile instance to save. It must have Emf raw format.
- fileName String
- The name of the file to which to save the metafile. The directory of the specified path is created if it does not exist.
In Visual Basic and C#, you can call this method as an instance method on any object of type
Metafile. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
This method is supported on Windows only.