Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Advanced / METAHEADER.cs / 1 / METAHEADER.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /*************************************************************************\ * * Copyright (c) 1998-1999, Microsoft Corp. All Rights Reserved. * * Module Name: * * METAHEADER.cs * * Abstract: * * Native GDI+ MetaHeader WMF 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=2)] public sealed class MetaHeader { /// 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. /// short type; short headerSize; short version; int size; short noObjects; int maxRecord; short noParameters; ///[To be supplied.] ////// /// Represents the type of the associated /// public short Type { get { return type; } set { type = value; } } ///. /// /// /// Represents the sizi, in bytes, of the /// header file. /// public short HeaderSize { get { return headerSize; } set { headerSize = value; } } ////// /// Represents the version number of the header /// format. /// public short Version { get { return version; } set { version = value; } } ////// /// Represents the sizi, in bytes, of the /// associated public int Size { get { return size; } set { size = value; } } ///. /// /// /// public short NoObjects { get { return noObjects; } set { noObjects = value; } } ///[To be supplied.] ////// /// public int MaxRecord { get { return maxRecord; } set { maxRecord = value; } } ///[To be supplied.] ////// /// public short NoParameters { get { return noParameters; } set { noParameters = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectTypeMapping.cs
- TaskScheduler.cs
- ProfilePropertySettings.cs
- BoundColumn.cs
- FileUpload.cs
- UIElement.cs
- TextRangeEditTables.cs
- XmlSerializerNamespaces.cs
- DebuggerAttributes.cs
- ProtocolViolationException.cs
- ToolbarAUtomationPeer.cs
- MemberMemberBinding.cs
- CodeRegionDirective.cs
- GridViewActionList.cs
- WebPartsSection.cs
- InkPresenter.cs
- XmlWellformedWriterHelpers.cs
- RijndaelManaged.cs
- HMACRIPEMD160.cs
- RecordConverter.cs
- WebPartCancelEventArgs.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- TagPrefixCollection.cs
- ProcessHostServerConfig.cs
- EditorPart.cs
- DefaultAssemblyResolver.cs
- AppSettingsReader.cs
- XmlSchemaExporter.cs
- MemoryResponseElement.cs
- BasicCellRelation.cs
- WindowsIPAddress.cs
- Socket.cs
- Funcletizer.cs
- RequestChannelBinder.cs
- XmlTypeMapping.cs
- WindowsUpDown.cs
- ScrollBar.cs
- TransformerInfo.cs
- Invariant.cs
- CollectionBase.cs
- TcpAppDomainProtocolHandler.cs
- BindingListCollectionView.cs
- SpellerHighlightLayer.cs
- ButtonBase.cs
- Token.cs
- Input.cs
- XmlSchemaDatatype.cs
- QueryContext.cs
- categoryentry.cs
- CellLabel.cs
- MemberRelationshipService.cs
- OneWayBindingElementImporter.cs
- codemethodreferenceexpression.cs
- ISSmlParser.cs
- Column.cs
- WebPartsSection.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- CacheDependency.cs
- OleDbConnectionInternal.cs
- ADMembershipProvider.cs
- CompiledQuery.cs
- CodeVariableDeclarationStatement.cs
- QuaternionRotation3D.cs
- WebPartEditorOkVerb.cs
- BitmapEffectDrawingContent.cs
- HwndKeyboardInputProvider.cs
- SystemUnicastIPAddressInformation.cs
- TextEditorMouse.cs
- Common.cs
- Pens.cs
- LocalizedNameDescriptionPair.cs
- RootBuilder.cs
- GetIndexBinder.cs
- RoamingStoreFile.cs
- TypeBuilderInstantiation.cs
- MouseWheelEventArgs.cs
- Rect3DValueSerializer.cs
- StyleXamlTreeBuilder.cs
- WebPartChrome.cs
- RequestResizeEvent.cs
- UrlPath.cs
- WindowsAuthenticationEventArgs.cs
- MemoryStream.cs
- NavigationPropertyEmitter.cs
- ObfuscateAssemblyAttribute.cs
- FlowDocumentReaderAutomationPeer.cs
- CodeSnippetStatement.cs
- TimeEnumHelper.cs
- ObjectQueryState.cs
- InstalledVoice.cs
- TypefaceMetricsCache.cs
- EventManager.cs
- ObjectTag.cs
- SerializationObjectManager.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- NetworkInformationException.cs
- SharedPersonalizationStateInfo.cs
- OleDbPermission.cs
- NotSupportedException.cs
- WaitHandleCannotBeOpenedException.cs