Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Advanced / PropertyItem.cs / 1 / PropertyItem.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /*************************************************************************\ * * Copyright (c) 1998-1999, Microsoft Corp. All Rights Reserved. * * Module Name: * * PropertyItem.cs * * Abstract: * * Native GDI+ PropertyItem structure. * * Revision History: * * 3/3/2k [....] * Created it. * \**************************************************************************/ namespace System.Drawing.Imaging { using System.Runtime.InteropServices; using System; using System.Drawing; // sdkinc\imaging.h ////// /// Encapsulates a metadata property to be /// included in an image file. /// public sealed class PropertyItem { int id; int len; short type; byte[] value; internal PropertyItem() { } ////// /// Represents the ID of the property. /// public int Id { get { return id; } set { id = value; } } ////// /// Represents the length of the property. /// public int Len { get { return len; } set { len = value; } } ////// /// Represents the type of the property. /// public short Type { get { return type; } set { type = value; } } ////// /// Contains the property value. /// public byte[] Value { get { return this.value; } set { this.value = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- srgsitem.cs
- InstanceDataCollectionCollection.cs
- ObjectRef.cs
- TagPrefixAttribute.cs
- ConfigsHelper.cs
- ProviderIncompatibleException.cs
- MsmqIntegrationProcessProtocolHandler.cs
- PrintEvent.cs
- EnvironmentPermission.cs
- linebase.cs
- securitymgrsite.cs
- ExpressionPrefixAttribute.cs
- ButtonBaseDesigner.cs
- ExpressionBindingCollection.cs
- ServiceOperationInfoTypeConverter.cs
- HtmlEmptyTagControlBuilder.cs
- IgnoreFileBuildProvider.cs
- MessageDroppedTraceRecord.cs
- ConnectorSelectionGlyph.cs
- PerformanceCounterPermissionEntry.cs
- loginstatus.cs
- SelectionGlyphBase.cs
- ProfileServiceManager.cs
- RegexMatch.cs
- MetadataArtifactLoaderCompositeFile.cs
- MailDefinition.cs
- HtmlHead.cs
- CollectionViewSource.cs
- HttpClientProtocol.cs
- Classification.cs
- DayRenderEvent.cs
- StdValidatorsAndConverters.cs
- MessageBox.cs
- XslCompiledTransform.cs
- MissingSatelliteAssemblyException.cs
- MulticastOption.cs
- URIFormatException.cs
- Preprocessor.cs
- ApplicationGesture.cs
- ProcessRequestAsyncResult.cs
- HostingEnvironment.cs
- complextypematerializer.cs
- NativeCompoundFileAPIs.cs
- TemplateBindingExpressionConverter.cs
- BeginStoryboard.cs
- TextEditorMouse.cs
- LoadedOrUnloadedOperation.cs
- TrackingServices.cs
- CustomPeerResolverService.cs
- X509Logo.cs
- DBNull.cs
- DefaultValueTypeConverter.cs
- RemotingAttributes.cs
- HtmlInputReset.cs
- SubclassTypeValidator.cs
- SHA512Cng.cs
- SqlNode.cs
- EncoderReplacementFallback.cs
- BaseParaClient.cs
- parserscommon.cs
- GridViewAutomationPeer.cs
- FrameworkElementAutomationPeer.cs
- basenumberconverter.cs
- MenuBindingsEditor.cs
- HttpCacheVaryByContentEncodings.cs
- Win32Native.cs
- control.ime.cs
- NativeMethods.cs
- Constant.cs
- HttpCacheVaryByContentEncodings.cs
- StylusDevice.cs
- ActiveXHelper.cs
- XmlValidatingReaderImpl.cs
- CheckBox.cs
- SqlRewriteScalarSubqueries.cs
- PathFigureCollectionConverter.cs
- FileUtil.cs
- ApplicationDirectory.cs
- DataRowComparer.cs
- DBDataPermission.cs
- Padding.cs
- EntityStoreSchemaFilterEntry.cs
- Rect.cs
- FtpCachePolicyElement.cs
- _DisconnectOverlappedAsyncResult.cs
- Registry.cs
- Bold.cs
- DataServiceContext.cs
- NativeMethods.cs
- WebBrowser.cs
- PopupRootAutomationPeer.cs
- CompositeCollection.cs
- DataMemberFieldEditor.cs
- CacheChildrenQuery.cs
- SspiNegotiationTokenProviderState.cs
- ToolStripContentPanel.cs
- StorageTypeMapping.cs
- PartialCachingControl.cs
- TreeIterator.cs
- Tuple.cs