@Tagging

The DGV Framework can execute tags at runtime, Tags with matching Property names (Root Level) will be automatically be replaced with the respective values .

Tagging is enabled when setting the column alias;

Wrap the property @PropertyName and the framework will replace with the value.

Basic Usage

 _dataGridView
     .SetColumnAlias("Full Name", "[@FName @LName]");

Use as Parameters

  _dataGridView
     .SetColumnAlias("Full Name", "GetFullName(@FName,@LName)");

Last updated

Was this helpful?