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
- InkSerializer.cs
- BulletDecorator.cs
- AnonymousIdentificationSection.cs
- LinkClickEvent.cs
- cookiecollection.cs
- SQLChars.cs
- Crc32.cs
- GPRECT.cs
- BatchParser.cs
- WS2007FederationHttpBindingElement.cs
- ConnectionStringsSection.cs
- FontSourceCollection.cs
- FormsAuthenticationUserCollection.cs
- NumericExpr.cs
- StickyNote.cs
- LinqDataSourceDeleteEventArgs.cs
- CommonDialog.cs
- MruCache.cs
- StringFreezingAttribute.cs
- Pair.cs
- DataControlField.cs
- RuntimeConfigurationRecord.cs
- ComboBox.cs
- PromptStyle.cs
- StrongNameKeyPair.cs
- HighlightVisual.cs
- ProtocolsConfigurationHandler.cs
- BitmapEffectOutputConnector.cs
- ElementUtil.cs
- EditingScopeUndoUnit.cs
- EntryPointNotFoundException.cs
- MethodImplAttribute.cs
- EUCJPEncoding.cs
- TreeWalker.cs
- FrameworkTextComposition.cs
- QueueProcessor.cs
- StorageTypeMapping.cs
- ImageClickEventArgs.cs
- DbDataRecord.cs
- ClockGroup.cs
- ProfileSettingsCollection.cs
- WorkflowServiceNamespace.cs
- DesignBinding.cs
- ResourceWriter.cs
- ConnectionStringsExpressionBuilder.cs
- RadioButtonFlatAdapter.cs
- HostProtectionPermission.cs
- SystemFonts.cs
- MenuAdapter.cs
- SkipStoryboardToFill.cs
- DataGridColumn.cs
- KeyBinding.cs
- CodeIdentifier.cs
- ScriptModule.cs
- WorkflowPageSetupDialog.cs
- BindableTemplateBuilder.cs
- IdentityHolder.cs
- ImpersonationContext.cs
- GregorianCalendar.cs
- DataControlPagerLinkButton.cs
- RegexCaptureCollection.cs
- SecurityCriticalDataForSet.cs
- MessageDecoder.cs
- WorkflowLayouts.cs
- OleDbConnectionFactory.cs
- SQLString.cs
- FixedBufferAttribute.cs
- ExceptionHandler.cs
- MappingSource.cs
- HtmlLabelAdapter.cs
- ActivityExecutorDelegateInfo.cs
- XmlSignificantWhitespace.cs
- HostingPreferredMapPath.cs
- Types.cs
- ScriptManagerProxy.cs
- SqlRecordBuffer.cs
- KeySpline.cs
- ObjectItemConventionAssemblyLoader.cs
- DataBindingCollection.cs
- WebAdminConfigurationHelper.cs
- TemplateApplicationHelper.cs
- EndOfStreamException.cs
- InstanceHandleConflictException.cs
- DesignerExtenders.cs
- SelectionManager.cs
- FieldNameLookup.cs
- MarkupWriter.cs
- Expr.cs
- DataSourceSelectArguments.cs
- ActivityTrace.cs
- AppLevelCompilationSectionCache.cs
- WindowsTooltip.cs
- InvalidProgramException.cs
- Model3DGroup.cs
- InvalidComObjectException.cs
- DataGridViewTopRowAccessibleObject.cs
- ObjectDataSourceFilteringEventArgs.cs
- CalendarDateRange.cs
- DataGridViewRowEventArgs.cs
- EnglishPluralizationService.cs