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 > RasterSaveDialogFileFormatsList Class : Item Property




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

Syntax

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

Parameters

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

Return Value

The RasterSaveDialogFileFormat 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