Image Viewer CP ActiveX Control

GetTIFFileName

 

Search the TIF Collection for given index. Return the image file name. The first index start form 0.

Public Function GetTIFFileName( _
  ByVal iIndex As Integer _
) As String

 

Parameter
iIndex
a index of Image in TIF Collection.


Return Value

Return the name of image file.


Example

   

Visual Basic Syntax
For i = 0 To ImageViewer1.GetTIFCount - 1
strName = ImageViewer1.GetTIFFileName(i)
Next