Hide In Tables Attribute

The HideInTables attribute is used to prevent members from showing up as columns in tables drawn using the TableList attribute.

public MyItem Item = new MyItem();

[TableList]
public List<MyItem> Table = new List<MyItem>()
{
    new MyItem(),
    new MyItem(),
    new MyItem(),
};

[Serializable]
public class MyItem
{
    public string A;

    public int B;

    [HideInTables]
    public int Hidden;
}