Simple List

Print and design of simple lists is the "default” and can be started with just a few lines of code:

ListLabel LL = new ListLabel();
LL.DataSource = CreateDataSet();

 

// Call Designer
LL.Design();

 

// Print

LL.Print();

LL.Dispose();