C# Class EpLibrary.cs.OpenMultiFileDialog

This is a class for Open Multi-File Dialog
Inheritance: IDisposable
Datei anzeigen Open project: juhgiyo/EpLibrary.cs

Private Properties

Property Type Description

Public Methods

Method Description
Dispose ( ) : void
GetFileNames ( ) : String[]

Return the list of selected file names

OpenMultiFileDialog ( String title = null, String defaultExt = null, String defaultDir = null, String filter = null, IWin32Window owner = null ) : System

Default Constructor

ShowDialog ( ) : DialogResult

Show dialog and return DialogResult

Protected Methods

Method Description
Dispose ( bool isDisposing ) : void

Method Details

Dispose() public method

public Dispose ( ) : void
return void

Dispose() protected method

protected Dispose ( bool isDisposing ) : void
isDisposing bool
return void

GetFileNames() public method

Return the list of selected file names
public GetFileNames ( ) : String[]
return String[]

OpenMultiFileDialog() public method

Default Constructor
public OpenMultiFileDialog ( String title = null, String defaultExt = null, String defaultDir = null, String filter = null, IWin32Window owner = null ) : System
title String the title of the dialog
defaultExt String The default extension
defaultDir String The default directory
filter String The file extension filter
owner IWin32Window the parent window
return System

ShowDialog() public method

Show dialog and return DialogResult
public ShowDialog ( ) : DialogResult
return DialogResult