Labels

This project type matches the value LlProject.Label for the AutoProjectType property.

It is used for the output of labels. As there are no tabular areas and also no report container, only variables and no fields are available (see section Variables, Fields and Data).

If the used data source contains multiple tables, e.g. products, customers, etc. the source table for printing labels can be selected by the DataMember property of the component:

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

 

// Products as data source

LL.DataMember = "Products";

 

// Select label as project type

LL.AutoProjectType = LlProject.Label;


LL.Design();
LL.Dispose();