FileDialog.title Property

Parent Object: FileDialog
Defined in namespace "adsk::core" and the header file is <Core/UserInterface/FileDialog.h>

Description

Gets or sets the title displayed on the dialog.

Syntax

"fileDialog_var" is a variable referencing a FileDialog object.

# Get the value of the property.
propertyValue = fileDialog_var.title

# Set the value of the property.
fileDialog_var.title = propertyValue
"fileDialog_var" is a variable referencing a FileDialog object.
#include <Core/UserInterface/FileDialog.h>

// Get the value of the property.
string propertyValue = fileDialog_var->title();

// Set the value of the property, where value_var is a string.
bool returnValue = fileDialog_var->title(value_var);

Property Value

This is a read/write property whose value is a string.

Samples

Name Description
File Dialog Sample Demonstrating how to pop up a file dialog and a folder dialog.
Write user interface to a file API Sample Writes out the full structure of the Fusion user interface. This information is useful when editing the user-interface, as discussed in the usre manual topic User-Interface Customization with Fusion's API

Version

Introduced in version August 2014