combit List & Label 30 - .NET Help
combit.Reporting Namespace / AutoDefineElementEventArgs Class / AssociatedTableRow Property


AssociatedTableRow Property

This gives you access to the other elements/columns of the current data row.

Syntax
'Declaration
 
Public ReadOnly Property AssociatedTableRow As ITableRow
 
Example
...
private void LL_AutoDefineField(object sender, AutoDefineElementEventArgs e)
{
        Boolean bValue;
        Boolean.TryParse(e.AssociatedTableRow.Columns.FirstOrDefault(x => x.ColumnName == "<MyBooleanColumnName>").Content.ToString(), out bValue);

        string sValue = e.AssociatedTableRow.Columns.FirstOrDefault(x => x.ColumnName == "<MyTextColumnName>").Content.ToString();
        // ...
}
...

 

Requirements

Platforms: Windows 10 (Version 21H2 - 23H2), Windows 11 (21H2 - 22H2), Windows Server 2016 - 2022
.NET: .NET Framework 4.8, .NET 6, .NET 8, .NET 9

See Also