Base interface for label objects.

Namespace:  DYMO.Label.Framework
Assembly:  DYMO.Label.Framework (in DYMO.Label.Framework.dll) Version: 1.0.0.0 (8.4.0.1475)

Syntax

C#
public interface ILabelObject
Visual Basic (Declaration)
Public Interface ILabelObject
Visual C++
public interface class ILabelObject

Remarks

ILabelObject is a base interface for all label object interfaces, such as ITextObject or IBarcodeObject, and provides properties and methods common for all object types.

Examples

CopyC#
void ObjectNames()
{
    // open a label
    ILabel label = Label.Open("AllObjects.label");

    // enum object on the label and print their names to console
    foreach (ILabelObject obj in label.Objects)
        Console.WriteLine(obj.Name);
}

See Also