Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Advanced / WmfPlaceableFileHeader.cs / 1305376 / 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. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ContainerSelectorGlyph.cs
- UnconditionalPolicy.cs
- ASCIIEncoding.cs
- BinaryCommonClasses.cs
- KeyValuePair.cs
- RegexFCD.cs
- Compress.cs
- SelectionRange.cs
- FormatConvertedBitmap.cs
- OdbcEnvironmentHandle.cs
- FormsAuthenticationUserCollection.cs
- TransformedBitmap.cs
- QueryExpr.cs
- __Error.cs
- PreviewPageInfo.cs
- SqlPersonalizationProvider.cs
- ResXResourceWriter.cs
- XmlWrappingReader.cs
- MembershipUser.cs
- IsolatedStoragePermission.cs
- HttpListenerException.cs
- CompareValidator.cs
- PictureBoxDesigner.cs
- AbstractExpressions.cs
- Message.cs
- ContentPosition.cs
- ComplexPropertyEntry.cs
- ResponseBodyWriter.cs
- UpdateEventArgs.cs
- SQLGuid.cs
- ScaleTransform.cs
- COM2ColorConverter.cs
- PrintDialog.cs
- FrameworkEventSource.cs
- EntityReference.cs
- SQLDecimalStorage.cs
- HttpProtocolImporter.cs
- AttributeData.cs
- ValidateNames.cs
- CopyCodeAction.cs
- QilTypeChecker.cs
- IdnMapping.cs
- DataGridViewBand.cs
- AssociationSetEnd.cs
- ActivityStatusChangeEventArgs.cs
- LongAverageAggregationOperator.cs
- WmlValidatorAdapter.cs
- RadioButtonList.cs
- CultureInfo.cs
- NumericUpDownAcceleration.cs
- DataBinder.cs
- DocumentPageViewAutomationPeer.cs
- TimelineGroup.cs
- Function.cs
- MultiAsyncResult.cs
- ListenerElementsCollection.cs
- ResolveCriteria11.cs
- Pkcs7Signer.cs
- FlowDocumentReader.cs
- Popup.cs
- UIElement3DAutomationPeer.cs
- CornerRadiusConverter.cs
- UpdateException.cs
- AuthenticationServiceManager.cs
- GridViewDeleteEventArgs.cs
- TextElement.cs
- TableAdapterManagerHelper.cs
- DetailsViewDeleteEventArgs.cs
- PersonalizableAttribute.cs
- RuntimeEnvironment.cs
- CodeCastExpression.cs
- WebBrowserHelper.cs
- WebDisplayNameAttribute.cs
- ToolStripHighContrastRenderer.cs
- Ops.cs
- MonthCalendar.cs
- Int64KeyFrameCollection.cs
- AttributeEmitter.cs
- SqlDataSourceSelectingEventArgs.cs
- XPathDocumentNavigator.cs
- LassoSelectionBehavior.cs
- Package.cs
- CompilerWrapper.cs
- TextEditorCharacters.cs
- KeyValuePairs.cs
- FormsAuthenticationEventArgs.cs
- MissingManifestResourceException.cs
- PopOutPanel.cs
- FamilyCollection.cs
- UserControlCodeDomTreeGenerator.cs
- XamlFigureLengthSerializer.cs
- ParallelActivityDesigner.cs
- MarkupExtensionReturnTypeAttribute.cs
- Calendar.cs
- ToolStripDropDownDesigner.cs
- CriticalFinalizerObject.cs
- SequentialOutput.cs
- DataMemberConverter.cs
- SecureUICommand.cs
- ReachDocumentReferenceSerializer.cs