- firstIndex
- The 0-based index of the first thumbnail to remove.
- lastIndex
- The 0-based index of the last thumbnail to remove. Must be greater than or equal to firstIndex. You can pass -1 to remove from firstIndex to the last thumbnail index in the WebThumbnailViewer control.
| Visual Basic (Declaration) | |
|---|---|
Public Sub Remove( _ ByVal firstIndex As Integer, _ ByVal lastIndex As Integer _ ) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As WebThumbnailViewer Dim firstIndex As Integer Dim lastIndex As Integer instance.Remove(firstIndex, lastIndex) | |
| C# | |
|---|---|
public void Remove( int firstIndex, int lastIndex ) | |
| C++/CLI | |
|---|---|
public: void Remove( int firstIndex, int lastIndex ) | |
Parameters
- firstIndex
- The 0-based index of the first thumbnail to remove.
- lastIndex
- The 0-based index of the last thumbnail to remove. Must be greater than or equal to firstIndex. You can pass -1 to remove from firstIndex to the last thumbnail index in the WebThumbnailViewer control.
Refer to Insert
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code