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
- NotImplementedException.cs
- Signature.cs
- ItemsPresenter.cs
- WpfPayload.cs
- XmlAutoDetectWriter.cs
- DPTypeDescriptorContext.cs
- SoapAttributes.cs
- RsaKeyIdentifierClause.cs
- HostExecutionContextManager.cs
- ColorConvertedBitmap.cs
- IsolatedStorageException.cs
- DesignerActionVerbList.cs
- NgenServicingAttributes.cs
- DefinitionUpdate.cs
- DoubleLink.cs
- AssemblySettingAttributes.cs
- ParseChildrenAsPropertiesAttribute.cs
- _HTTPDateParse.cs
- PermissionSetEnumerator.cs
- EmptyEnumerable.cs
- WindowsComboBox.cs
- FileClassifier.cs
- AddInAdapter.cs
- WebBrowserContainer.cs
- KnownColorTable.cs
- Condition.cs
- Nodes.cs
- XamlFilter.cs
- PackageFilter.cs
- AttributeUsageAttribute.cs
- SchemaInfo.cs
- TableColumn.cs
- StateMachineWorkflowDesigner.cs
- SafeFindHandle.cs
- WebScriptServiceHost.cs
- SafeRegistryKey.cs
- CodeSubDirectory.cs
- CompositionAdorner.cs
- ModuleBuilderData.cs
- PrintController.cs
- SelectionService.cs
- BuildProviderCollection.cs
- RecipientInfo.cs
- EntityDescriptor.cs
- HScrollProperties.cs
- xmlglyphRunInfo.cs
- ElementAtQueryOperator.cs
- TreeNodeCollection.cs
- FacetEnabledSchemaElement.cs
- DisplayNameAttribute.cs
- Pick.cs
- LeftCellWrapper.cs
- Schema.cs
- InvalidOleVariantTypeException.cs
- Transform.cs
- SystemIPGlobalStatistics.cs
- PresentationSource.cs
- XmlQueryCardinality.cs
- SchemaImporterExtensionsSection.cs
- RefExpr.cs
- transactioncontext.cs
- BinaryNode.cs
- ListViewUpdateEventArgs.cs
- QilBinary.cs
- WindowPattern.cs
- HttpDebugHandler.cs
- ScrollData.cs
- PropertyGridView.cs
- PropertyDescriptorCollection.cs
- ApplicationHost.cs
- ThrowHelper.cs
- MarkupWriter.cs
- DataSourceControlBuilder.cs
- Util.cs
- SchemaImporterExtension.cs
- NetworkInterface.cs
- AttachmentService.cs
- FastEncoder.cs
- OracleDateTime.cs
- WorkflowInstanceExtensionManager.cs
- ObjectManager.cs
- ClockGroup.cs
- XPathSingletonIterator.cs
- DataSetMappper.cs
- PenThread.cs
- PropertyChangedEventArgs.cs
- ReachFixedDocumentSerializerAsync.cs
- MediaCommands.cs
- NameValueCollection.cs
- System.Data_BID.cs
- ConditionalBranch.cs
- ScaleTransform.cs
- DSACryptoServiceProvider.cs
- EventsTab.cs
- Pool.cs
- UnauthorizedWebPart.cs
- InternalMappingException.cs
- TabControlEvent.cs
- StylusButtonEventArgs.cs
- GacUtil.cs