Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Advanced / BitmapData.cs / 1305376 / BitmapData.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing.Imaging { using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System; using System.Drawing; using Marshal = System.Runtime.InteropServices.Marshal; using System.Runtime.InteropServices; ////// /// Specifies the attributes of a bitmap image. /// [StructLayout(LayoutKind.Sequential)] public sealed class BitmapData { int width; int height; int stride; int pixelFormat; IntPtr scan0; int reserved; ////// /// Specifies the pixel width of the public int Width { get { return width; } set { width = value; } } ///. /// /// /// Specifies the pixel height of the public int Height { get { return height; } set { height = value; } } ///. /// /// /// Specifies the stride width of the public int Stride { get { return stride; } set { stride = value; } } ///. /// /// /// Specifies the format of the pixel /// information in this public PixelFormat PixelFormat { get { return (PixelFormat) pixelFormat; } [SuppressMessage("Microsoft.Performance", "CA1803:AvoidCostlyCallsWherePossible")] set { switch(value) { case PixelFormat.DontCare: // case PixelFormat.Undefined: same as DontCare case PixelFormat.Max: case PixelFormat.Indexed: case PixelFormat.Gdi: case PixelFormat.Format16bppRgb555: case PixelFormat.Format16bppRgb565: case PixelFormat.Format24bppRgb: case PixelFormat.Format32bppRgb: case PixelFormat.Format1bppIndexed: case PixelFormat.Format4bppIndexed: case PixelFormat.Format8bppIndexed: case PixelFormat.Alpha: case PixelFormat.Format16bppArgb1555: case PixelFormat.PAlpha: case PixelFormat.Format32bppPArgb: case PixelFormat.Extended: case PixelFormat.Format16bppGrayScale: case PixelFormat.Format48bppRgb: case PixelFormat.Format64bppPArgb: case PixelFormat.Canonical: case PixelFormat.Format32bppArgb: case PixelFormat.Format64bppArgb: break; default: throw new System.ComponentModel.InvalidEnumArgumentException("value", (int)value, typeof(PixelFormat)); } pixelFormat = (int) value; } } ///. /// /// /// Specifies the address of the pixel data. /// public IntPtr Scan0 { get { return scan0; } set { scan0 = value; } } ////// /// Reserved. Do not use. /// public int Reserved { // why make public?? // get { return reserved; } set { reserved = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- VisualStyleTypesAndProperties.cs
- Vars.cs
- ChildTable.cs
- CodeGeneratorOptions.cs
- Literal.cs
- NativeMethods.cs
- HttpCacheParams.cs
- XDRSchema.cs
- AsynchronousChannelMergeEnumerator.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- HebrewNumber.cs
- ArgumentException.cs
- SdlChannelSink.cs
- ScrollData.cs
- SafeRegistryHandle.cs
- ResourceWriter.cs
- FieldNameLookup.cs
- ViewManager.cs
- IIS7WorkerRequest.cs
- File.cs
- NetworkCredential.cs
- ProcessHost.cs
- SerTrace.cs
- SecurityAccessDeniedException.cs
- TimeSpanValidator.cs
- SqlFacetAttribute.cs
- OdbcConnectionString.cs
- GACIdentityPermission.cs
- Crc32.cs
- RootBrowserWindowProxy.cs
- Blend.cs
- Slider.cs
- ProcessStartInfo.cs
- SqlClientWrapperSmiStreamChars.cs
- ScrollBarAutomationPeer.cs
- RSAPKCS1SignatureFormatter.cs
- PanelDesigner.cs
- SelectedGridItemChangedEvent.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- ManagementNamedValueCollection.cs
- UrlPath.cs
- LoginDesigner.cs
- TextTreeExtractElementUndoUnit.cs
- PersonalizationStateInfo.cs
- PolicyStatement.cs
- EntityViewGenerator.cs
- ProxyWebPartConnectionCollection.cs
- SmiEventStream.cs
- FixedSOMImage.cs
- IDReferencePropertyAttribute.cs
- ISAPIRuntime.cs
- CustomAssemblyResolver.cs
- VerticalAlignConverter.cs
- TripleDES.cs
- SafeHandles.cs
- BadImageFormatException.cs
- DBCommand.cs
- WebPartEditorOkVerb.cs
- DocumentAutomationPeer.cs
- Interlocked.cs
- ZipIOFileItemStream.cs
- OletxCommittableTransaction.cs
- XmlAtomicValue.cs
- ClientScriptItemCollection.cs
- Queue.cs
- PrintDialog.cs
- ScopeCompiler.cs
- SoapCodeExporter.cs
- TableCellCollection.cs
- OdbcPermission.cs
- FileDialog.cs
- Font.cs
- CurrentTimeZone.cs
- ClientBuildManager.cs
- GeometryHitTestResult.cs
- LogicalMethodInfo.cs
- unsafeIndexingFilterStream.cs
- DrawingImage.cs
- TypeHelper.cs
- EncryptedXml.cs
- ColorTransform.cs
- Graphics.cs
- DelayLoadType.cs
- HttpCapabilitiesEvaluator.cs
- Encoder.cs
- DataGridRowClipboardEventArgs.cs
- RC2.cs
- BinaryNode.cs
- XmlHierarchicalDataSourceView.cs
- VisualStyleInformation.cs
- HttpHandlerActionCollection.cs
- NameValueConfigurationCollection.cs
- Signature.cs
- ByteStream.cs
- XsltInput.cs
- WindowsEditBoxRange.cs
- QueryInterceptorAttribute.cs
- WebRequestModulesSection.cs
- FlowDocument.cs
- EnterpriseServicesHelper.cs