GetCustomTooltipHandler Property
Autodesk.DataManagement.Client.Framework.Vault.Forms.Controls›ClassicVaultBrowserControl.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);
}