Code:
/ DotNET / DotNET / 8.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
- PrimaryKeyTypeConverter.cs
- DomainUpDown.cs
- EventLogPermissionEntry.cs
- VisualTreeHelper.cs
- MethodCallExpression.cs
- CssClassPropertyAttribute.cs
- StateDesignerConnector.cs
- DataBindingHandlerAttribute.cs
- BitmapEffect.cs
- CodeTypeDelegate.cs
- ContractMethodInfo.cs
- DataTemplateSelector.cs
- XmlJsonReader.cs
- EncryptedXml.cs
- HandlerBase.cs
- CalculatedColumn.cs
- ListItemDetailViewAttribute.cs
- DbProviderFactories.cs
- dataobject.cs
- VariantWrapper.cs
- HuffmanTree.cs
- ObjectStateFormatter.cs
- XmlWriter.cs
- WebZone.cs
- xamlnodes.cs
- DesignerCategoryAttribute.cs
- WebPartCloseVerb.cs
- GridEntry.cs
- WeakHashtable.cs
- XPathNodeIterator.cs
- X509Chain.cs
- OutputWindow.cs
- StructuralType.cs
- XamlRtfConverter.cs
- DateTimeUtil.cs
- PreservationFileWriter.cs
- PermissionSetTriple.cs
- UndirectedGraph.cs
- ParserExtension.cs
- KeyNotFoundException.cs
- EventSetter.cs
- ProcessThread.cs
- NumericUpDown.cs
- TransformPattern.cs
- safelink.cs
- IsolatedStoragePermission.cs
- XslVisitor.cs
- DBDataPermissionAttribute.cs
- StorageEntityContainerMapping.cs
- Endpoint.cs
- CapabilitiesPattern.cs
- IntegerValidatorAttribute.cs
- Root.cs
- SchemaConstraints.cs
- Int32Rect.cs
- _SslState.cs
- GlobalProxySelection.cs
- Canvas.cs
- FloatUtil.cs
- DocumentPageViewAutomationPeer.cs
- Wrapper.cs
- StringUtil.cs
- PasswordBox.cs
- FrameworkPropertyMetadata.cs
- LineUtil.cs
- UInt64Storage.cs
- ValidatingPropertiesEventArgs.cs
- TextContainerChangedEventArgs.cs
- ExpressionContext.cs
- SystemInfo.cs
- TypeUsage.cs
- NetworkCredential.cs
- SystemColorTracker.cs
- InputBuffer.cs
- MethodCallConverter.cs
- ServiceNameCollection.cs
- ComIntegrationManifestGenerator.cs
- X509Utils.cs
- ServiceDescription.cs
- BufferModesCollection.cs
- compensatingcollection.cs
- FixedPageAutomationPeer.cs
- TokenBasedSet.cs
- Style.cs
- DataGridRow.cs
- SafeEventLogWriteHandle.cs
- Win32SafeHandles.cs
- TypeUnloadedException.cs
- TextElementEnumerator.cs
- Tokenizer.cs
- RectAnimationUsingKeyFrames.cs
- DataGridViewCellStateChangedEventArgs.cs
- MultilineStringEditor.cs
- RegularExpressionValidator.cs
- IdentityReference.cs
- EditorBrowsableAttribute.cs
- precedingquery.cs
- SplitterEvent.cs
- OuterGlowBitmapEffect.cs
- FixedSOMTableRow.cs