Leadtools.WinForms.CommonDialogs.File Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.8.31
Item Property
See Also 
Leadtools.WinForms.CommonDialogs.File Namespace > RasterSaveDialogBitsPerPixelList Class : Item Property




index
The index of the item in the collection to get or set.
Gets or sets the RasterSaveDialogBitsPerPixel associated with the index.

Syntax

Visual Basic (Declaration) 
Public Default Property Item( _
   ByVal index As Integer _
) As RasterSaveDialogBitsPerPixel
Visual Basic (Usage)Copy Code
Dim instance As RasterSaveDialogBitsPerPixelList
Dim index As Integer
Dim value As RasterSaveDialogBitsPerPixel
 
instance.Item(index) = value
 
value = instance.Item(index)
C# 
public RasterSaveDialogBitsPerPixel this[ 
   int index
]; {get; set;}
Managed Extensions for C++ 
public: __property RasterSaveDialogBitsPerPixel* get_Item( 
   int index
);
public: __property void set_Item( 
   int index,
   RasterSaveDialogBitsPerPixel* value
);
C++/CLI 
public:
property RasterSaveDialogBitsPerPixel^ default [int] {
   RasterSaveDialogBitsPerPixel^ get(int index);
   void set (int indexRasterSaveDialogBitsPerPixel^ value);
}

Parameters

index
The index of the item in the collection to get or set.

Return Value

The RasterSaveDialogBitsPerPixel associated with the index.

Example

Refer to RasterSaveDialog example.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also