Class dymo.label.framework.ILabelSetRecord
Constructor Attributes | Constructor Name and Description |
---|---|
ILabelSetRecord instance holds data of one LabelSet record.
|
Method Attributes | Method Name and Description |
---|---|
setBase64Image(objectName, base64Image)
Adds image data to the record.
|
|
setText(objectName, text)
Adds data to the record specified as plain text.
|
|
setTextMarkup(objectName, textMarkup)
Adds data to the record specified as text markup.
|
Class Detail
dymo.label.framework.ILabelSetRecord()
ILabelSetRecord instance holds data of one LabelSet record. ILabelSetRecord provides methods for adding data to therecord.
To create IRecordLabelSet instance, use dymo.label.framework.LabelSetBuilder.prototype.addRecord method
Method Detail
{dymo.label.framework.ILabelSetRecord}
setBase64Image(objectName, base64Image)
Adds image data to the record.
- Parameters:
- {string} objectName
- The name of the object that the markup is set for.
- {string} base64Image
- The string containing the base64-encoded PNG image stream.
- Returns:
- {dymo.label.framework.ILabelSetRecord} self
{dymo.label.framework.ILabelSetRecord}
setText(objectName, text)
Adds data to the record specified as plain text.
- Parameters:
- {string} objectName
- The name of the object that the markup is set for.
- {string} text
- The object text to set.
- Returns:
- {dymo.label.framework.ILabelSetRecord} self
{dymo.label.framework.ILabelSetRecord}
setTextMarkup(objectName, textMarkup)
Adds data to the record specified as text markup.
- Parameters:
- {string} objectName
- The name of the object that the markup is set for.
- {string} textMarkup
- The markup string. See TextMarkup.xsd.
- Returns:
- {dymo.label.framework.ILabelSetRecord} self