Folder.BrowseForFolder Method
Public Shared Function BrowseForFolder( _
ByVal project_id As EntityID, _
ByVal title As String, _
ByRef cancelled As Boolean, _
Optional ByVal parent_window As IWin32Window = null, _
Optional ByVal starting_folder As EntityID = null _
) As DataOperationResponse(Of ProjectFolder)
This language is not supported or no code example is available.
public static DataOperationResponse<ProjectFolder> BrowseForFolder(
EntityID project_id,
string title,
out bool cancelled,
IWin32Window parent_window = null,
EntityID starting_folder = null
)
This language is not supported or no code example is available.
public:
static DataOperationResponse<ProjectFolder^>^ BrowseForFolder(
EntityID^ project_id,
String^ title,
bool& cancelled,
IWin32Window^ parent_window,
EntityID^ starting_folder
)
This language is not supported or no code example is available.
Parameters
- project_id
- EntityID
the id of the project to browse for a folder in
- title
- string
the title of the window
- cancelled
- bool
whether or not the operation was cancelled by the user
- parent_window
- IWin32Window
the parent window for any UI elements
- starting_folder
- EntityID
an optional folder to start browsing in - if ommitted, the selection will start at the top of the job
Return Value
DataOperationResponse<ProjectFolder>a project folder, as selected by the user