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
- WithStatement.cs
- RtType.cs
- RuleSetDialog.cs
- UserUseLicenseDictionaryLoader.cs
- ExceptionWrapper.cs
- WebPartZoneCollection.cs
- ContractAdapter.cs
- DbDeleteCommandTree.cs
- RijndaelManaged.cs
- ParserStreamGeometryContext.cs
- KeyFrames.cs
- WpfMemberInvoker.cs
- PeerInputChannelListener.cs
- ExpressionVisitor.cs
- RowToFieldTransformer.cs
- LocalServiceSecuritySettings.cs
- UnsafeNativeMethods.cs
- CodeNamespaceImportCollection.cs
- BamlTreeUpdater.cs
- HtmlTitle.cs
- RequestCachePolicyConverter.cs
- SqlReferenceCollection.cs
- EncryptRequest.cs
- PolyLineSegment.cs
- PropertyInfoSet.cs
- Timeline.cs
- Quad.cs
- SqlNotificationEventArgs.cs
- OracleParameterCollection.cs
- EventPrivateKey.cs
- EntityContainer.cs
- TextSelection.cs
- MediaElementAutomationPeer.cs
- NumericUpDownAccelerationCollection.cs
- WinInet.cs
- TreeNodeCollectionEditor.cs
- ExpandedWrapper.cs
- ToolStripDropDownButton.cs
- ClaimTypeElement.cs
- UnsafeNativeMethods.cs
- ToolStripContainer.cs
- CollectionContainer.cs
- CodePageEncoding.cs
- CompilationRelaxations.cs
- BitmapPalette.cs
- DocumentXPathNavigator.cs
- BooleanFacetDescriptionElement.cs
- PageVisual.cs
- TabItemWrapperAutomationPeer.cs
- DataStreamFromComStream.cs
- MsmqIntegrationProcessProtocolHandler.cs
- SqlUdtInfo.cs
- RequestResponse.cs
- MimeMultiPart.cs
- ItemCheckedEvent.cs
- ListCollectionView.cs
- WindowsTooltip.cs
- StreamingContext.cs
- WebPartDisplayModeCancelEventArgs.cs
- IdleTimeoutMonitor.cs
- LayoutInformation.cs
- ClockGroup.cs
- WindowHideOrCloseTracker.cs
- PublishLicense.cs
- AdapterUtil.cs
- EntitySqlQueryCacheKey.cs
- UnsafeNativeMethods.cs
- StsCommunicationException.cs
- WebServiceMethodData.cs
- StoreAnnotationsMap.cs
- PerspectiveCamera.cs
- HtmlInputText.cs
- ArgumentException.cs
- CheckedPointers.cs
- keycontainerpermission.cs
- TextBreakpoint.cs
- RestHandler.cs
- XmlNullResolver.cs
- WebHttpDispatchOperationSelector.cs
- CodeIdentifier.cs
- IndexingContentUnit.cs
- QilFunction.cs
- _ConnectionGroup.cs
- filewebrequest.cs
- ColumnHeader.cs
- SmtpFailedRecipientException.cs
- WebPartDisplayMode.cs
- Globals.cs
- JsonQueryStringConverter.cs
- SeverityFilter.cs
- SqlExpressionNullability.cs
- BitmapPalette.cs
- Tracking.cs
- RsaSecurityTokenParameters.cs
- BaseCodePageEncoding.cs
- DataBoundLiteralControl.cs
- MailWebEventProvider.cs
- RawStylusInputReport.cs
- SchemaDeclBase.cs
- CommandLineParser.cs