Code:
/ FX-1434 / FX-1434 / 1.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
- UnsafeCollabNativeMethods.cs
- SystemColors.cs
- VarInfo.cs
- GreaterThan.cs
- BinHexEncoder.cs
- StorageEntityTypeMapping.cs
- Restrictions.cs
- TdsEnums.cs
- CodeSubDirectory.cs
- DataServiceExpressionVisitor.cs
- SiteOfOriginPart.cs
- QueueTransferProtocol.cs
- SoapFault.cs
- EnumerableRowCollection.cs
- WindowsPrincipal.cs
- RegistrationServices.cs
- FeatureManager.cs
- Activity.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- DataGrid.cs
- StyleHelper.cs
- TreeNodeBindingCollection.cs
- versioninfo.cs
- ServiceDeploymentInfo.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- Serializer.cs
- FontUnit.cs
- PreviewPageInfo.cs
- _KerberosClient.cs
- StringPropertyBuilder.cs
- ContentOperations.cs
- ByteStreamGeometryContext.cs
- UriTemplateQueryValue.cs
- SHA384.cs
- EmptyControlCollection.cs
- DataKey.cs
- XPathNavigator.cs
- PlanCompiler.cs
- SchemaElementLookUpTable.cs
- PageParser.cs
- HttpApplicationFactory.cs
- ELinqQueryState.cs
- InitializingNewItemEventArgs.cs
- UIElement3D.cs
- Header.cs
- StackBuilderSink.cs
- SystemWebCachingSectionGroup.cs
- AuditLevel.cs
- ByteConverter.cs
- PeerCustomResolverElement.cs
- ConnectionStringsExpressionBuilder.cs
- BorderSidesEditor.cs
- ToolboxService.cs
- ConnectionManagementElement.cs
- TypeConverterHelper.cs
- ReachFixedPageSerializerAsync.cs
- GridViewSelectEventArgs.cs
- SafeWaitHandle.cs
- SHA256.cs
- RandomDelayQueuedSendsAsyncResult.cs
- DuplicateContext.cs
- NativeMethods.cs
- ArrayExtension.cs
- ListBox.cs
- WebProxyScriptElement.cs
- Char.cs
- SynchronizedChannelCollection.cs
- Size3DConverter.cs
- TabControlEvent.cs
- HebrewCalendar.cs
- RelationshipConverter.cs
- TemplatePropertyEntry.cs
- Context.cs
- MarkupWriter.cs
- safePerfProviderHandle.cs
- ScrollBar.cs
- CodeTypeDeclarationCollection.cs
- UniqueIdentifierService.cs
- CachedTypeface.cs
- SingleStorage.cs
- XsltContext.cs
- DescendantQuery.cs
- XDeferredAxisSource.cs
- PropertyItem.cs
- ExclusiveHandleList.cs
- GenericUI.cs
- DrawListViewSubItemEventArgs.cs
- Pair.cs
- DbConnectionStringCommon.cs
- TraceListener.cs
- MappingSource.cs
- NavigationWindow.cs
- DetailsViewCommandEventArgs.cs
- MemoryFailPoint.cs
- QilInvokeLateBound.cs
- ExpandSegmentCollection.cs
- PropertyTabChangedEvent.cs
- UserControlParser.cs
- XpsFilter.cs
- ItemContainerPattern.cs