Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Advanced / WmfPlaceableFileHeader.cs / 1 / WmfPlaceableFileHeader.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /*************************************************************************\ * * Copyright (c) 1998-1999, Microsoft Corp. All Rights Reserved. * * Module Name: * * WmfPlaceableFileHeader.cs * * Abstract: * * Native GDI+ WmfPlaceableFileHeader structure. * * Revision History: * * 10/21/1999 [....] * Created it. * \**************************************************************************/ namespace System.Drawing.Imaging { using System.Diagnostics; using System; using System.Drawing; using System.Runtime.InteropServices; ////// /// Defines an Placeable Metafile. /// [StructLayout(LayoutKind.Sequential)] public sealed class WmfPlaceableFileHeader { int key = unchecked((int)0x9aC6CDD7); short hmf; short bboxLeft; short bboxTop; short bboxRight; short bboxBottom; short inch; int reserved; short checksum; ////// /// Indicates the presence of a placeable /// metafile header. /// public int Key { get { return key; } set { key = value; } } ////// /// Stores the handle of the metafile in /// memory. /// public short Hmf { get { return hmf; } set { hmf = value; } } ////// /// The x-coordinate of the upper-left corner /// of the bounding rectangle of the metafile image on the output device. /// public short BboxLeft { get { return bboxLeft; } set { bboxLeft = value; } } ////// /// public short BboxTop { get { return bboxTop; } set { bboxTop = value; } } ////// The y-coordinate of the upper-left corner of the bounding rectangle of the /// metafile image on the output device. /// ////// /// public short BboxRight { get { return bboxRight; } set { bboxRight = value; } } ////// The x-coordinate of the lower-right corner of the bounding rectangle of the /// metafile image on the output device. /// ////// /// public short BboxBottom { get { return bboxBottom; } set { bboxBottom = value; } } ////// The y-coordinate of the lower-right corner of the bounding rectangle of the /// metafile image on the output device. /// ////// /// Indicates the number of twips per inch. /// public short Inch { get { return inch; } set { inch = value; } } ////// /// Reserved. Do not use. /// public int Reserved { get { return reserved; } set { reserved = value; } } ////// /// public short Checksum { get { return checksum; } set { checksum = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved./// Indicates the checksum value for the /// previous ten WORDs in the header. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ModelUtilities.cs
- MetadataItemEmitter.cs
- X509Utils.cs
- NullableFloatSumAggregationOperator.cs
- StorageComplexPropertyMapping.cs
- FormViewModeEventArgs.cs
- RenderOptions.cs
- BooleanConverter.cs
- XPathBuilder.cs
- TextParaLineResult.cs
- StrokeCollectionConverter.cs
- XmlSerializationWriter.cs
- HtmlElementCollection.cs
- ExtendedProtectionPolicyTypeConverter.cs
- LazyTextWriterCreator.cs
- ComponentCollection.cs
- CharAnimationBase.cs
- CommandHelpers.cs
- XmlDomTextWriter.cs
- ParserExtension.cs
- AlphaSortedEnumConverter.cs
- CopyAction.cs
- _UriTypeConverter.cs
- XPathPatternBuilder.cs
- HttpGetServerProtocol.cs
- InputProcessorProfilesLoader.cs
- WindowHideOrCloseTracker.cs
- AnnotationAdorner.cs
- NodeFunctions.cs
- HostingEnvironment.cs
- WorkflowDesignerColors.cs
- BidOverLoads.cs
- EdmItemCollection.cs
- ThreadStaticAttribute.cs
- CriticalFinalizerObject.cs
- Page.cs
- returneventsaver.cs
- SignedXml.cs
- SecurityHeaderTokenResolver.cs
- ThreadStateException.cs
- PropertyEmitter.cs
- SizeAnimation.cs
- ManagementObjectSearcher.cs
- ChannelProtectionRequirements.cs
- TreeView.cs
- ClusterRegistryConfigurationProvider.cs
- Walker.cs
- TcpChannelHelper.cs
- TableItemStyle.cs
- LoginStatusDesigner.cs
- DeferrableContentConverter.cs
- PageBreakRecord.cs
- RSAOAEPKeyExchangeDeformatter.cs
- SqlStream.cs
- GridViewColumn.cs
- Quad.cs
- WindowAutomationPeer.cs
- BaseProcessor.cs
- TypedColumnHandler.cs
- HtmlPanelAdapter.cs
- KeyInterop.cs
- IUnknownConstantAttribute.cs
- WorkflowShape.cs
- DbDataSourceEnumerator.cs
- Bitmap.cs
- ValidatingPropertiesEventArgs.cs
- WebServiceBindingAttribute.cs
- CursorConverter.cs
- SchemaImporterExtensionElement.cs
- EncryptedKey.cs
- OracleDataAdapter.cs
- BufferedReadStream.cs
- ExpandSegment.cs
- AttributeCollection.cs
- SafeRightsManagementHandle.cs
- EditorAttribute.cs
- X509AudioLogo.cs
- Identity.cs
- EventMappingSettingsCollection.cs
- ExpressionNode.cs
- PublisherMembershipCondition.cs
- NativeMethodsOther.cs
- LogManagementAsyncResult.cs
- AddingNewEventArgs.cs
- OdbcParameterCollection.cs
- ColumnResizeUndoUnit.cs
- EntityViewGenerationAttribute.cs
- ParameterModifier.cs
- SAPIEngineTypes.cs
- _CommandStream.cs
- ContentPosition.cs
- ConditionedDesigner.cs
- InheritanceRules.cs
- MultiBindingExpression.cs
- DbQueryCommandTree.cs
- Avt.cs
- ParentQuery.cs
- FlowLayout.cs
- ProfileSection.cs
- SecurityPolicySection.cs