TlmBase access to columns from extern
Brought to you by:
otto_mayer
Hi,
TlmBase.cs
If you change accessors from internal to public here:
...
public class AL_TlmColumn : ArrayList
...
public new TlmColumn this[Int32 iIndex]
...
and add
public AL_TlmColumn Columns
{
get{ return al_TlmColumn; }
}
then you can access the colums from outside like:
table.Columns.Count or table.Columns[0]