Gets or sets the initial directory displayed by the file dialog box.
# Get the value of the property.propertyValue = folderDialog_var.initialDirectory# Set the value of the property.folderDialog_var.initialDirectory = propertyValue
#include <Core/UserInterface/FolderDialog.h>// Get the value of the property.string propertyValue = folderDialog_var->initialDirectory();// Set the value of the property, where value_var is a string.bool returnValue = folderDialog_var->initialDirectory(value_var);