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
- ElementMarkupObject.cs
- MenuAutomationPeer.cs
- ArgumentNullException.cs
- UInt16.cs
- FirewallWrapper.cs
- DiagnosticEventProvider.cs
- EFTableProvider.cs
- TreeNodeStyleCollection.cs
- ApplicationFileCodeDomTreeGenerator.cs
- ObjectConverter.cs
- MergablePropertyAttribute.cs
- SamlDoNotCacheCondition.cs
- WorkItem.cs
- EntityDataSourceMemberPath.cs
- ProtocolInformationWriter.cs
- VersionedStreamOwner.cs
- SystemUdpStatistics.cs
- ExpressionBindingCollection.cs
- CodeDefaultValueExpression.cs
- Regex.cs
- XmlUnspecifiedAttribute.cs
- HiddenFieldPageStatePersister.cs
- XmlSchemaType.cs
- HelpInfo.cs
- DocumentPage.cs
- _OSSOCK.cs
- TemplateInstanceAttribute.cs
- ConfigurationStrings.cs
- X509CertificateClaimSet.cs
- PrePostDescendentsWalker.cs
- EnumerableRowCollectionExtensions.cs
- XmlNode.cs
- TextElementCollection.cs
- DataColumn.cs
- SqlCacheDependency.cs
- Codec.cs
- TypeFieldSchema.cs
- ObjectPropertyMapping.cs
- ProcessInfo.cs
- Tracer.cs
- CodeVariableDeclarationStatement.cs
- MemoryStream.cs
- DesignerObject.cs
- WebScriptMetadataFormatter.cs
- ThemeInfoAttribute.cs
- SymmetricAlgorithm.cs
- WebBrowser.cs
- FormDocumentDesigner.cs
- TextRangeSerialization.cs
- ArithmeticException.cs
- AssociationSetMetadata.cs
- WebBrowserNavigatedEventHandler.cs
- WebPartDescription.cs
- JoinElimination.cs
- ExceptionRoutedEventArgs.cs
- UidManager.cs
- DES.cs
- SpeakInfo.cs
- SqlDataSourceParameterParser.cs
- PassportAuthentication.cs
- PipeStream.cs
- TreeNodeMouseHoverEvent.cs
- DataGridViewTextBoxEditingControl.cs
- BamlWriter.cs
- ChooseAction.cs
- PropertyIDSet.cs
- PresentationSource.cs
- XmlDataContract.cs
- RequestQueue.cs
- WindowsListViewGroup.cs
- BamlBinaryWriter.cs
- IntSecurity.cs
- OutgoingWebRequestContext.cs
- ChannelDispatcherBase.cs
- Int32AnimationBase.cs
- RankException.cs
- Condition.cs
- BitSet.cs
- UnsafeNativeMethods.cs
- InternalPermissions.cs
- RequestCacheEntry.cs
- ClipboardData.cs
- ExpressionVisitorHelpers.cs
- PointAnimationClockResource.cs
- SubstitutionList.cs
- CssClassPropertyAttribute.cs
- KeyGestureConverter.cs
- HealthMonitoringSectionHelper.cs
- SmiEventStream.cs
- ObfuscationAttribute.cs
- SqlGenericUtil.cs
- Emitter.cs
- TextRangeEditTables.cs
- HtmlLabelAdapter.cs
- QilDataSource.cs
- EntityDataSourceDesigner.cs
- EndpointConfigContainer.cs
- UserControl.cs
- Attributes.cs
- DesignUtil.cs