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
- WebRequestModulesSection.cs
- relpropertyhelper.cs
- AtomContentProperty.cs
- DrawingBrush.cs
- WebPartHeaderCloseVerb.cs
- GregorianCalendarHelper.cs
- UrlPath.cs
- DesignerLoader.cs
- DataGridViewColumnHeaderCell.cs
- RawMouseInputReport.cs
- WpfKnownMemberInvoker.cs
- SemanticTag.cs
- OdbcConnectionPoolProviderInfo.cs
- CapacityStreamGeometryContext.cs
- DataControlCommands.cs
- SchemaComplexType.cs
- ErrorReporting.cs
- _TimerThread.cs
- TreeViewImageIndexConverter.cs
- Rect3D.cs
- OdbcParameter.cs
- BoundField.cs
- XsltException.cs
- View.cs
- PointUtil.cs
- ELinqQueryState.cs
- XamlInterfaces.cs
- BitmapVisualManager.cs
- NumberAction.cs
- LambdaCompiler.ControlFlow.cs
- CanExecuteRoutedEventArgs.cs
- BitSet.cs
- DataRowChangeEvent.cs
- RoleManagerEventArgs.cs
- EventSinkHelperWriter.cs
- XPathExpr.cs
- IntersectQueryOperator.cs
- MasterPage.cs
- IriParsingElement.cs
- UserControl.cs
- RequestCacheEntry.cs
- ModelItem.cs
- OleDbRowUpdatingEvent.cs
- DiffuseMaterial.cs
- ComboBoxRenderer.cs
- UmAlQuraCalendar.cs
- WriteFileContext.cs
- NativeCompoundFileAPIs.cs
- TemplatedMailWebEventProvider.cs
- WebSysDescriptionAttribute.cs
- BindingWorker.cs
- WebPartDisplayModeCancelEventArgs.cs
- DefaultTypeArgumentAttribute.cs
- ViewBox.cs
- BitStack.cs
- ComponentResourceManager.cs
- LocalizationCodeDomSerializer.cs
- TerminatorSinks.cs
- Certificate.cs
- listitem.cs
- DescriptionAttribute.cs
- TTSEvent.cs
- CqlWriter.cs
- CursorInteropHelper.cs
- UnwrappedTypesXmlSerializerManager.cs
- FontCacheUtil.cs
- GridViewItemAutomationPeer.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- ExtendedPropertyCollection.cs
- TextSelection.cs
- wmiprovider.cs
- CustomTypeDescriptor.cs
- SamlAction.cs
- Header.cs
- COM2Properties.cs
- XmlNamespaceMappingCollection.cs
- CommonXSendMessage.cs
- XPathNodePointer.cs
- HtmlInputText.cs
- SymbolMethod.cs
- unsafenativemethodsother.cs
- WebPartConnectionsConfigureVerb.cs
- COM2EnumConverter.cs
- SafeEventLogWriteHandle.cs
- UpdateManifestForBrowserApplication.cs
- RecordsAffectedEventArgs.cs
- CachedRequestParams.cs
- GcSettings.cs
- OneWayChannelListener.cs
- MemberDomainMap.cs
- Pen.cs
- EngineSiteSapi.cs
- SizeIndependentAnimationStorage.cs
- KnownTypesProvider.cs
- SpellCheck.cs
- BrushConverter.cs
- DataGridViewDataConnection.cs
- XmlEncoding.cs
- CharacterBufferReference.cs
- TimeSpanConverter.cs