Coherent UI for Unity3D  2.5.3
A modern user interface library for games
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
Coherent.UI.FileSelectRequest Class Reference

File selection request. More...

Inherits IDisposable.

Public Member Functions

virtual FileSelectionParams GetFileSelectionParams ()
 Get the file selection params for the current request. These are useful for creating the file chooser dialog with accurate params - what mimeTypes are accepted, whether user can choose multiple files or directories, etc. More...
 
virtual void Add (string fullPath)
 Adds a file to the current request. More...
 
virtual void Finish ()
 Complete the request. This method should be called when you are done with adding files to this file selection request. More...
 

Detailed Description

File selection request.

Member Function Documentation

virtual void Coherent.UI.FileSelectRequest.Add ( string  fullPath)
inlinevirtual

Adds a file to the current request.

Parameters
fullPathThe full path to the chosen file or directory
virtual void Coherent.UI.FileSelectRequest.Finish ( )
inlinevirtual

Complete the request. This method should be called when you are done with adding files to this file selection request.

virtual FileSelectionParams Coherent.UI.FileSelectRequest.GetFileSelectionParams ( )
inlinevirtual

Get the file selection params for the current request. These are useful for creating the file chooser dialog with accurate params - what mimeTypes are accepted, whether user can choose multiple files or directories, etc.

Returns
the file selection params for this request