Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Advanced / PropertyItem.cs / 1305376 / PropertyItem.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HierarchicalDataBoundControlAdapter.cs
- OdbcFactory.cs
- TextRange.cs
- SqlServices.cs
- EmptyStringExpandableObjectConverter.cs
- ExtenderControl.cs
- ComAdminInterfaces.cs
- ApplicationCommands.cs
- TableItemPatternIdentifiers.cs
- SqlDataSourceStatusEventArgs.cs
- ArrangedElement.cs
- CodeCommentStatement.cs
- SortKey.cs
- Keywords.cs
- relpropertyhelper.cs
- UDPClient.cs
- ApplicationSecurityManager.cs
- DataBindingCollection.cs
- DataGridViewRowsAddedEventArgs.cs
- EnumValAlphaComparer.cs
- COM2FontConverter.cs
- IntMinMaxAggregationOperator.cs
- Italic.cs
- Path.cs
- SubstitutionList.cs
- panel.cs
- PrimitiveXmlSerializers.cs
- PtsHost.cs
- MemberDescriptor.cs
- ResourcesBuildProvider.cs
- SizeChangedInfo.cs
- Transform3D.cs
- WorkflowApplicationCompletedException.cs
- SAPIEngineTypes.cs
- ItemDragEvent.cs
- _ListenerRequestStream.cs
- TextParagraphCache.cs
- ScrollChrome.cs
- ImageMapEventArgs.cs
- IPPacketInformation.cs
- ConfigXmlDocument.cs
- EntityType.cs
- HttpListener.cs
- Lasso.cs
- ServiceHttpModule.cs
- ContentValidator.cs
- DataContract.cs
- StyleSelector.cs
- GACIdentityPermission.cs
- UpdatePanel.cs
- SqlDataSource.cs
- GraphicsPath.cs
- DataTemplateSelector.cs
- LogRecordSequence.cs
- DetailsView.cs
- Transform3DCollection.cs
- TransactionContextManager.cs
- HttpCacheVary.cs
- TextDataBindingHandler.cs
- NotifyParentPropertyAttribute.cs
- SymbolPair.cs
- CapabilitiesRule.cs
- PrintController.cs
- ComponentChangingEvent.cs
- ScrollableControl.cs
- RepeaterItemCollection.cs
- CodeDirectoryCompiler.cs
- MeshGeometry3D.cs
- ImageDrawing.cs
- WebExceptionStatus.cs
- ScriptingRoleServiceSection.cs
- XmlnsDictionary.cs
- ChannelFactoryRefCache.cs
- Hyperlink.cs
- RangeValueProviderWrapper.cs
- ChooseAction.cs
- DataGridViewHitTestInfo.cs
- WebPartManager.cs
- FontUnitConverter.cs
- GregorianCalendarHelper.cs
- RuntimeConfigLKG.cs
- Encoder.cs
- COM2PropertyDescriptor.cs
- DockingAttribute.cs
- WebContext.cs
- IdnElement.cs
- connectionpool.cs
- HttpConfigurationSystem.cs
- ContextMenuStripGroup.cs
- SafeFileMappingHandle.cs
- TextPattern.cs
- PriorityBindingExpression.cs
- SqlDataSourceParameterParser.cs
- BindingSourceDesigner.cs
- Compensate.cs
- WmlListAdapter.cs
- EntityContainerRelationshipSetEnd.cs
- TraceRecord.cs
- ValidationHelper.cs
- SettingsBindableAttribute.cs