Provides the base interface for label operations.
Namespace:
DYMO.Label.FrameworkAssembly: DYMO.Label.Framework (in DYMO.Label.Framework.dll) Version: 1.0.0.0 (8.4.0.1475)
Syntax
| C# |
|---|
public interface ILabel |
| Visual Basic (Declaration) |
|---|
Public Interface ILabel |
| Visual C++ |
|---|
public interface class ILabel |
Remarks
ILabel interface provides methods for performing label operations common to all label interfaces.
Examples
The following example shows the simplest way to print a label.
CopyC#
void PrintLabel() { // obtain a reference to ILabel by loading a label from a file ILabel label = Label.Open("MyLabel.label"); // print it label.Print("DYMO LabelWriter 450 Turbo"); }