LabelCallbackTEntity Delegate |
Returns a label for the specified entity.
Namespace:
AGI.Foundation.Tracking
Assembly:
AGI.Foundation.Tracking.Graphics (in AGI.Foundation.Tracking.Graphics.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public delegate string LabelCallback<TEntity>(
Transaction transaction,
TEntity entity
)
Public Delegate Function LabelCallback(Of TEntity) (
transaction As Transaction,
entity As TEntity
) As String
generic<typename TEntity>
public delegate String^ LabelCallback(
Transaction^ transaction,
TEntity entity
)
type LabelCallback =
delegate of
transaction : Transaction *
entity : 'TEntity -> string
Parameters
- transaction
- Type: AGI.FoundationTransaction
The transaction to use. - entity
- Type: TEntity
The entity for which to retrieve a label.
Type Parameters
- TEntity
- The type of entity.
Return Value
Type:
StringThe entity label.
See Also