ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms.Thumbnails Namespace / ImGearThumbnailCtl Class / DirectoryAppend Method
Can either be specified as a DOS file path (e.g., with a drive-letter), or as a Windows file path (e.g., a UNC file path like "\\server\sharename\directory").
A standard Windows file-filter string: "*.*" means all files, "*.bmp" means all BMP files, "*.JPG;*.BMP" means all BMP and JPG files.




In This Topic
    DirectoryAppend Method (ImGearThumbnailCtl)
    In This Topic
    Creates a series of thumbnail items (either one per file, or one per page per file), by scanning through the specified directory and selecting all of the files matching the specifying filters.
    Syntax
    'Declaration
     
    <DescriptionAttribute()>
    Public Sub DirectoryAppend( _
       ByVal directory As String, _
       ByVal filters As String _
    ) 
    'Usage
     
    Dim instance As ImGearThumbnailCtl
    Dim directory As String
    Dim filters As String
     
    instance.DirectoryAppend(directory, filters)
    [Description()]
    public void DirectoryAppend( 
       string directory,
       string filters
    )
    [Description()]
    public: void DirectoryAppend( 
       string* directory,
       string* filters
    ) 
    [Description()]
    public:
    void DirectoryAppend( 
       String^ directory,
       String^ filters
    ) 

    Parameters

    directory
    Can either be specified as a DOS file path (e.g., with a drive-letter), or as a Windows file path (e.g., a UNC file path like "\\server\sharename\directory").
    filters
    A standard Windows file-filter string: "*.*" means all files, "*.bmp" means all BMP files, "*.JPG;*.BMP" means all BMP and JPG files.
    See Also