M
Max Christian
The following code produces the exception "Not implemented" when
RotateFlip is called. Am I doing something wrong?
Protected mf As System.Drawing.Imaging.Metafile
....
Dim a As System.Reflection.Assembly
a = System.Reflection.Assembly.GetExecutingAssembly
Dim str As Stream
str = a.GetManifestResourceStream(wmfName)
mf = New System.Drawing.Imaging.Metafile(str)
mf.RotateFlip(RotateFlipType.RotateNoneFlipX)
It doesn't make any difference what RotateFlipType I specify, the
exception is the same. So to me it looks like RotateFlip on Metafiles
is fully documented but in fact entirely unimplemented. Surely this
can't really be the case?
Thanks for any help,
Max Christian
RotateFlip is called. Am I doing something wrong?
Protected mf As System.Drawing.Imaging.Metafile
....
Dim a As System.Reflection.Assembly
a = System.Reflection.Assembly.GetExecutingAssembly
Dim str As Stream
str = a.GetManifestResourceStream(wmfName)
mf = New System.Drawing.Imaging.Metafile(str)
mf.RotateFlip(RotateFlipType.RotateNoneFlipX)
It doesn't make any difference what RotateFlipType I specify, the
exception is the same. So to me it looks like RotateFlip on Metafiles
is fully documented but in fact entirely unimplemented. Surely this
can't really be the case?
Thanks for any help,
Max Christian