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
- Rotation3DAnimationUsingKeyFrames.cs
- PresentationTraceSources.cs
- UrlMapping.cs
- LifetimeServices.cs
- CommandEventArgs.cs
- LinkConverter.cs
- DataGrid.cs
- RelationshipConstraintValidator.cs
- InternalDispatchObject.cs
- WSFederationHttpSecurityElement.cs
- TableChangeProcessor.cs
- MinMaxParagraphWidth.cs
- ContentDesigner.cs
- InputMethodStateChangeEventArgs.cs
- ProbeDuplexAsyncResult.cs
- LogExtent.cs
- Point3DCollection.cs
- TypeSemantics.cs
- DataGridViewTextBoxEditingControl.cs
- ZipIOBlockManager.cs
- TableItemPatternIdentifiers.cs
- CheckedListBox.cs
- TrustLevelCollection.cs
- SrgsRule.cs
- ProtocolsConfigurationHandler.cs
- KnownBoxes.cs
- BinHexDecoder.cs
- ColorConvertedBitmap.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- VirtualDirectoryMappingCollection.cs
- ExpressionVisitor.cs
- PersonalizableTypeEntry.cs
- TemplateBindingExpressionConverter.cs
- NetworkStream.cs
- ArgumentOutOfRangeException.cs
- HtmlElement.cs
- HttpRuntime.cs
- DocComment.cs
- AudioStateChangedEventArgs.cs
- DiscriminatorMap.cs
- AppDomainUnloadedException.cs
- FlowLayoutSettings.cs
- storepermission.cs
- VarRemapper.cs
- DecoderBestFitFallback.cs
- PathStreamGeometryContext.cs
- EncryptedPackageFilter.cs
- FixedDocumentSequencePaginator.cs
- Geometry3D.cs
- TemplateBindingExtension.cs
- UserMapPath.cs
- SoapCodeExporter.cs
- HasCopySemanticsAttribute.cs
- OleDbParameterCollection.cs
- XmlComment.cs
- KeyConstraint.cs
- MappingItemCollection.cs
- CrossContextChannel.cs
- XmlWriterTraceListener.cs
- XmlSchemaSimpleType.cs
- WebException.cs
- Single.cs
- OutputCacheModule.cs
- EnvironmentPermission.cs
- QilInvokeLateBound.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- LayoutEditorPart.cs
- AddInActivator.cs
- MessageQueueException.cs
- MembershipValidatePasswordEventArgs.cs
- NameValueFileSectionHandler.cs
- ApplicationId.cs
- TextRenderingModeValidation.cs
- coordinatorscratchpad.cs
- AuthenticationModuleElementCollection.cs
- TraceContextEventArgs.cs
- XmlConvert.cs
- Run.cs
- ImageSource.cs
- LabelExpression.cs
- XmlMembersMapping.cs
- ExceptionAggregator.cs
- StrongNameIdentityPermission.cs
- SimpleWebHandlerParser.cs
- StringConcat.cs
- ConfigXmlText.cs
- TypographyProperties.cs
- ScrollPattern.cs
- RegexWorker.cs
- StyleCollectionEditor.cs
- _ProxyRegBlob.cs
- PrimarySelectionGlyph.cs
- PathGeometry.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- Scalars.cs
- TextDecorationCollection.cs
- WindowsSlider.cs
- HuffmanTree.cs
- propertytag.cs
- Collection.cs