Autodesk Vault ProfessionalVault API

GetCustomTooltipHandler Property

Autodesk.DataManagement.Client.Framework.Vault.Forms.ControlsClassicVaultBrowserControl.CustomizationOptions

Gets or sets a delegate which allows the implementor to provide a custom tooltip for any property values displayed in the ClassicVaultBrowserControl

Syntax

public System.Func<IEntity,PropertyDefinition,object,string,string> GetCustomTooltipHandler {get; set;}
Public Property GetCustomTooltipHandler As System.Func(Of IEntity,PropertyDefinition,Object,String,String)

Example

public string GetCustomTooltipDelegate(Entities.IEntity entity, Properties.PropertyDefinition propDef, object propertyValue, string currentToolTip)
{
   return string.Format("{0}:{1}", entity.EntityName, currentToolTip);
}

See Also