Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Advanced / MetafileHeaderWmf.cs / 1 / MetafileHeaderWmf.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /*************************************************************************\ * * Copyright (c) 1998-1999, Microsoft Corp. All Rights Reserved. * * Module Name: * * MetafileHeaderWmf.cs * * Abstract: * * Native GDI+ MetafileHeaderWmf structure. * * Revision History: * * 10/21/1999 [....] * Created it. * \**************************************************************************/ namespace System.Drawing.Imaging { using System.Diagnostics; using System.Drawing; using System; using System.Runtime.InteropServices; [StructLayout(LayoutKind.Sequential, Pack=8)] internal class MetafileHeaderWmf { /// SECREVIEW : The ENHMETAHEADER structure is defined natively as a union with WmfHeader. /// Extreme care should be taken if changing the layout of the corresponding managaed /// structures to minimize the risk of buffer overruns. The affected managed classes /// are the following: ENHMETAHEADER, MetaHeader, MetafileHeaderWmf, MetafileHeaderEmf. /// See ASURT#82822 or changes in Metafile.cs@115636 for more information. /// public MetafileType type = MetafileType.Invalid; public int size = Marshal.SizeOf(typeof(MetafileHeaderWmf)); public int version = 0; public EmfPlusFlags emfPlusFlags=0; public float dpiX = 0; public float dpiY = 0; public int X = 0; public int Y = 0; public int Width = 0; public int Height = 0; //The below datatype, WmfHeader, file is defined natively //as a union with EmfHeader. Since EmfHeader is a larger //structure, we need to pad the struct below so that this //will marshal correctly. [MarshalAs(UnmanagedType.Struct)] public MetaHeader WmfHeader = new MetaHeader(); public int dummy1 = 0; public int dummy2 = 0; public int dummy3 = 0; public int dummy4 = 0; public int EmfPlusHeaderSize = 0; public int LogicalDpiX = 0; public int LogicalDpiY = 0; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Pen.cs
- Translator.cs
- WebPartCloseVerb.cs
- ConfigXmlWhitespace.cs
- PackagePartCollection.cs
- ConversionContext.cs
- WebPartMenuStyle.cs
- AlphaSortedEnumConverter.cs
- SocketElement.cs
- StylusPointDescription.cs
- MappingException.cs
- FontUnitConverter.cs
- SchemaElementLookUpTable.cs
- EventProperty.cs
- IndexingContentUnit.cs
- TabletDeviceInfo.cs
- OptimizerPatterns.cs
- ShaderEffect.cs
- FixedStringLookup.cs
- CultureInfoConverter.cs
- ParseNumbers.cs
- UniqueEventHelper.cs
- OrderedDictionaryStateHelper.cs
- coordinatorfactory.cs
- BasicKeyConstraint.cs
- SoapIncludeAttribute.cs
- BamlTreeNode.cs
- RotateTransform.cs
- MessageContractImporter.cs
- DropShadowBitmapEffect.cs
- _NetRes.cs
- IssuerInformation.cs
- ValidationErrorCollection.cs
- MessageFilterTable.cs
- TextEditorTables.cs
- IndexObject.cs
- SelectionRange.cs
- Native.cs
- HostingPreferredMapPath.cs
- ActivityTypeResolver.xaml.cs
- MbpInfo.cs
- VerificationException.cs
- WinEventHandler.cs
- XmlLanguageConverter.cs
- QueryOutputWriterV1.cs
- DataIdProcessor.cs
- UIElementParaClient.cs
- _SslStream.cs
- DeviceSpecificChoiceCollection.cs
- ListView.cs
- XmlSerializer.cs
- WrappedOptions.cs
- DataGridRow.cs
- TCPListener.cs
- DiscoveryClientRequestChannel.cs
- Table.cs
- VisualBrush.cs
- QilTernary.cs
- OutputCacheProfileCollection.cs
- PenCursorManager.cs
- XmlLinkedNode.cs
- IISUnsafeMethods.cs
- DataServiceKeyAttribute.cs
- ToolStripDropDownButton.cs
- VariableQuery.cs
- TdsParameterSetter.cs
- XmlConvert.cs
- QilFactory.cs
- OleDbRowUpdatedEvent.cs
- SafeMILHandle.cs
- TypeUsage.cs
- ReflectionTypeLoadException.cs
- DataGridCell.cs
- XmlAttribute.cs
- Underline.cs
- DetailsViewModeEventArgs.cs
- WmlLabelAdapter.cs
- RemoteWebConfigurationHost.cs
- SqlXml.cs
- ExtentKey.cs
- XamlTreeBuilder.cs
- ExcludePathInfo.cs
- CalendarDateChangedEventArgs.cs
- Configuration.cs
- ConnectionInterfaceCollection.cs
- Ops.cs
- SqlGenerator.cs
- diagnosticsswitches.cs
- XPathSelfQuery.cs
- NavigationProgressEventArgs.cs
- Duration.cs
- CodeMemberProperty.cs
- SrgsElementList.cs
- WhitespaceRuleReader.cs
- ScrollEventArgs.cs
- BCLDebug.cs
- GlyphsSerializer.cs
- PasswordDeriveBytes.cs
- ProfileProvider.cs
- ProcessHostServerConfig.cs