CloudFolderDialog.initialFolder Property

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

Description

Before the dialog is displayed this is used to get and set the initial folder that is shown when the dialog is displayed. It defaults to the DataFolder that is currently active in the Data Panel.

Syntax

"cloudFolderDialog_var" is a variable referencing a CloudFolderDialog object.

# Get the value of the property.
propertyValue = cloudFolderDialog_var.initialFolder

# Set the value of the property.
cloudFolderDialog_var.initialFolder = propertyValue
"cloudFolderDialog_var" is a variable referencing a CloudFolderDialog object.
#include <Core/UserInterface/CloudFolderDialog.h>

// Get the value of the property.
Ptr<DataFolder> propertyValue = cloudFolderDialog_var->initialFolder();

// Set the value of the property, where value_var is a DataFolder.
bool returnValue = cloudFolderDialog_var->initialFolder(value_var);

Property Value

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

Version

Introduced in version April 2026