GetToolTip Property
Gets or sets a delegate which allows the implementor to provide a custom tooltip for values displayed in this column
Syntax
public System.Func<IEntity,object,string,string> GetToolTip {get; set;}Public Property GetToolTip As System.Func(Of IEntity,Object,String,String)Example
public string GetTooltipDelegate(Vault.Currency.Entities.IEntity entity, object propertyValue, string currentToolTip)
{
return string.Format("{0}:{1}", entity.EntityName, currentToolTip);
}