Autodesk Vault ProfessionalVault API

GetRowStyleHandler Property

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

Gets or sets a delegate which allows the implementor to provide a custom format for an entire row in the ClassicVaultBrowserControl

Syntax

public System.Action<Style,IEntity> GetRowStyleHandler {get; set;}
Public Property GetRowStyleHandler As System.Action(Of Style,IEntity)

Example

public void GetRowStyleDelegate(Currency.Style style Entities.IEntity entity)
{
   if (entity is FileIteration)
      style.ForeColor = Color.Blue;
}

See Also