Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CommonUI / System / Drawing / Advanced / WmfPlaceableFileHeader.cs / 2 / WmfPlaceableFileHeader.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- 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. //------------------------------------------------------------------------------ ///// Indicates the checksum value for the /// previous ten WORDs in the header. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- 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./// 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
- CheckBoxBaseAdapter.cs
- InputScope.cs
- PageTheme.cs
- ZipFileInfoCollection.cs
- sqlinternaltransaction.cs
- SqlNodeAnnotation.cs
- HttpCookie.cs
- DiagnosticTrace.cs
- FixedFindEngine.cs
- SqlBuffer.cs
- ExpressionBindings.cs
- TextEndOfSegment.cs
- ListViewCommandEventArgs.cs
- BooleanAnimationUsingKeyFrames.cs
- DataGridViewRowPrePaintEventArgs.cs
- TrackingServices.cs
- DurableDispatcherAddressingFault.cs
- WindowsRichEdit.cs
- InputDevice.cs
- SafeNativeMethods.cs
- KeySplineConverter.cs
- basecomparevalidator.cs
- SpanIndex.cs
- _NegotiateClient.cs
- ThreadExceptionEvent.cs
- basenumberconverter.cs
- PartBasedPackageProperties.cs
- XmlSiteMapProvider.cs
- HttpListener.cs
- ParallelEnumerable.cs
- TablePattern.cs
- SqlBuilder.cs
- Registry.cs
- ObjectQueryState.cs
- StreamGeometry.cs
- XPathNodeInfoAtom.cs
- XmlRawWriterWrapper.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- DesignerForm.cs
- ListChangedEventArgs.cs
- SelectionPattern.cs
- MergeFailedEvent.cs
- FixedSOMTableCell.cs
- SQLRoleProvider.cs
- ClientType.cs
- GAC.cs
- SetIterators.cs
- ConfigurationValidatorBase.cs
- SynchronizedDispatch.cs
- RightsDocument.cs
- PopupRoot.cs
- Constants.cs
- DesignerAdRotatorAdapter.cs
- SqlConnectionStringBuilder.cs
- EntityReference.cs
- Logging.cs
- ChtmlSelectionListAdapter.cs
- ModuleConfigurationInfo.cs
- SecurityContext.cs
- EntityTemplateUserControl.cs
- PeerName.cs
- PersonalizationAdministration.cs
- StorageModelBuildProvider.cs
- SharedPerformanceCounter.cs
- SqlClientWrapperSmiStream.cs
- GetPageNumberCompletedEventArgs.cs
- FloaterBaseParaClient.cs
- BuildDependencySet.cs
- SqlDataSource.cs
- CodeNamespaceImport.cs
- BlockExpression.cs
- ProcessHost.cs
- ColumnHeaderConverter.cs
- DependencyPropertyAttribute.cs
- ComPersistableTypeElement.cs
- CallbackValidator.cs
- AbstractDataSvcMapFileLoader.cs
- ChannelEndpointElementCollection.cs
- BitHelper.cs
- ToolStripSystemRenderer.cs
- CacheSection.cs
- PagesSection.cs
- UnhandledExceptionEventArgs.cs
- DbConnectionPoolOptions.cs
- VisualBrush.cs
- DesigntimeLicenseContext.cs
- ErrorFormatterPage.cs
- XmlSiteMapProvider.cs
- HttpStreamMessageEncoderFactory.cs
- PathData.cs
- FunctionQuery.cs
- HtmlGenericControl.cs
- NativeMethods.cs
- documentation.cs
- WebPartTransformer.cs
- ObjectViewListener.cs
- WriterOutput.cs
- DropDownButton.cs
- SubqueryTrackingVisitor.cs
- ItemCollectionEditor.cs