Autodesk Vault ProfessionalVault API

GetGridConfiguration Property

Autodesk.DataManagement.Client.Framework.Vault.Forms.SettingsSelectEntitySettings.SelectEntityOptionsExtensibility

Gets or sets a delagate that is called to get the grid configuration that should be used for a particular folder. the configuration data for the Autodesk.DataManagement.Client.Framework.Vault.Forms.Controls.VaultBrowserControl displayed in the dialog box.

Syntax

public System.Func<IEntity,VaultBrowserControl.Configuration> GetGridConfiguration {get; set;}
Public Property GetGridConfiguration As System.Func(Of IEntity,VaultBrowserControl.Configuration)

Remarks

If not implemented or if null is returned, then the default grid configuration will be used.

Example

Vault.Forms.Controls.VaultBrowserControl.Configuration getGridConfiguration(Vault.Currency.Entities.IEntity parentEntity)
{
    if (parentEntity is MySpecialFolder)
        return m_specialFolderGridConfig;
    else
        return null;
}

See Also