Autodesk Vault ProfessionalVault API

CanDisplayEntityHandler Property

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

Gets or sets a delegate which allows the implementor to control which entities are displayed

Syntax

public System.Func<IEntity,bool> CanDisplayEntityHandler {get; set;}
Public Property CanDisplayEntityHandler As System.Func(Of IEntity,Boolean)

Example

public bool CanDisplayEntityDelegate(Entities.IEntity entity)
{
   if (entity is ChangeOrder)
      return false;
   return true.
}

See Also