PG NiceLabel Programming Guide Eng
PG NiceLabel Programming Guide Eng
com
NiceLabel
Programming Guide
English Edition
Version 20110830-27
Head Office
Euro Plus d.o.o.
Poslovna cona A 2
SI-4208 enur
Slovenia
Tel: +386 4 280 50 00
Fax: +386 4 233 11 48
sales@nicelabel.com
http://www.nicelabel.com
August 2011
Index
1.
Introduction ............................................................................................. 15
1.1
1.2
Introduction to DDE and ActiveX ......................................................................... 16
1.2.1 What is Dynamic Data Exchange (DDE)? .............................................................. 16
1.2.2 What is COM / ActiveX? ......................................................................................... 16
1.2.3 What is a Type Library? .......................................................................................... 17
1.2.4 The OLE/COM Object Viewer ................................................................................. 18
2.
1.3
1.4
1.5
2.2
How to use NiceLabel ActiveX interface ........................................................... 210
2.2.1 Basic Method ........................................................................................................ 210
2.2.2 Advanced Method ................................................................................................. 211
2.2.3 Differences between early and late binding .......................................................... 211
2.3
NiceLabel Wrapper .............................................................................................. 214
2.3.1 What is NiceLabel Wrapper? ................................................................................ 214
2.3.2 NiceLabel Wrapper Features: ............................................................................... 214
2.3.3 NiceLabel Wrapper Functionality .......................................................................... 214
2.3.4 Usage of NiceLabel Wrapper ................................................................................ 214
2.3.5 Where to get NiceLabel Wrapper? ....................................................................... 215
2.4
NiceLabel Engine Wrapper ................................................................................. 215
2.4.1 What is NiceLabel Engine Wrapper? .................................................................... 215
2.4.2 NiceLabel Engine Wrapper Features: ................................................................... 215
2.4.3 NiceLabel Engine Wrapper Functionality .............................................................. 215
2.4.4 Usage of NiceLabel Engine Wrapper ................................................................... 216
2.4.5 Where to get NiceLabel Engine Wrapper? ........................................................... 216
2.5
2.6
2.7
2.8
NiceLabel SDK Unit Based licensing ................................................................. 217
2.8.1 Sofware key licensing ........................................................................................... 217
2.9
NiceLabel ActiveX common interfaces .............................................................. 221
2.9.1 Class Application .................................................................................................. 221
2.9.2 Hierarchy diagram ................................................................................................. 237
2.9.3 Class IBarcode (Advanced only) .......................................................................... 238
www.nicelabel.com
Page 12 of 299
August 2011
2.9.4
2.9.5
2.9.6
2.9.7
2.9.8
2.9.9
2.9.10
2.9.11
2.9.12
2.9.13
2.9.14
2.9.15
2.9.16
2.9.17
2.9.18
2.9.19
2.9.20
2.9.21
2.9.22
2.9.23
2.9.24
2.9.25
2.9.26
2.10
2.10.1
2.10.2
2.10.3
2.10.4
2.10.5
2.10.6
2.10.7
2.10.8
3.
3.2
3.3
3.4
3.5
3.6
www.nicelabel.com
Page 13 of 299
3.7
4.
August 2011
4.2
DDE Commands ................................................................................................. 4278
4.2.1 DDEInitiate .......................................................................................................... 4278
4.2.2 DDEExecute........................................................................................................ 4278
4.2.3 DDETerminate .................................................................................................... 4278
4.3
NiceCommands .................................................................................................. 4279
4.3.1 COMMON ........................................................................................................... 4279
4.3.2 FILE ..................................................................................................................... 4282
4.3.3 PRINTING ........................................................................................................... 4283
4.3.4 DATABASE ......................................................................................................... 4286
5.
6.
5.2
5.3
5.4
5.5
ASP.NET.............................................................................................................. 5293
5.6
How to choose different printer for label printing not the one than is
selected in the label? ......................................................................................... 6295
6.2
How to close the label, if you do not have Label ID? ..................................... 6295
6.3
6.4
6.5
6.6
6.7
Where can I get programming samples for different environments? .......... 6296
6.8
7.
8.
www.nicelabel.com
Page 14 of 299
August 2011
1. Introduction
1.1 Overview of software integration
The most common method of label print is directly from NiceLabel software using its GUI
(graphic user interface). But sometimes there might be other requirements for label
production. NiceLabel has a wide variety of connectivity and integration options so you do
not need to use NiceLabel interactively, but through an ActiveX interface or Dynamic Data
Exchange connectivity.
NiceLabel can be used as a "print-engine" totally integrated to your custom application
and invisible to the end-user eyes.
Database
interface
Label production
NiceLabel
www.nicelabel.com
Page 15 of 299
August 2011
This manual contains a FAQ section where most frequently asked questions are
answered.
www.nicelabel.com
Page 16 of 299
August 2011
intact. Objects typically have many interfaces. A method of one interface may access,
use, or return another interface.
You can run Object Explorer anytime with pressing F2 button on your keyboard.
To use the type library
While writing code, you have just to enter a period after an object to get the associated
methods and properties, or after a method to get the associated properties.
Delphi
www.nicelabel.com
Page 17 of 299
August 2011
This produces the file NICELABEL5.OLB. You can view this file with the OLE/COM
Object Viewer.
OLE/COM Object Viewer is available to download from:
http://www.microsoft.com/com/resources/oleview.asp
1.3
www.nicelabel.com
Page 18 of 299
August 2011
www.nicelabel.com
Page 19 of 299
August 2011
2. ActiveX interface
2.1 Introduction
ActiveX is a technology used within Windows that allows the programs to interact with one
another through a pre-defined interface. ActiveX was previously known as OLE
Automation and is still referred to as such in the documentation of many programming
languages that can make use of it.
An ActiveX interface is made up of 'exposed objects and methods'. The objects can be
looked upon as the containers for the methods that provide the interface functionality. The
methods perform specific tasks using parameters you pass to the method to specify the
detail of the task.
ActiveX interface available in NiceLabel software allows you to take remote control over
label printing. You can embed the functionality of NiceLabel Pro into your application and
use NiceLabel as print engine.
Before you start developing your custom application you should know, how to use
NiceLabel ActiveX interface in your software.
Database
interface
Label production
NiceLabel
www.nicelabel.com
Opening labels
Setting variables
Setting printers
Printing
August 2011
The basic connection to the label must be done with the method LabelOpen. When
accessing NiceLabel with LabelOpen command, you will get the ID of the label. All further
operations that are done with the label are then managed with this ID.
The basic method allows you to use the basic operations, but they are quite sufficient for
label printing. It is not possible to use any of the labels interfaces, their properties and/or
methods as with the advanced method. If you need more power over your label, you have
the advanced method available.
This method does not support Unicode characters.
Opening labels
Setting variables
Setting printers
Printing
The advanced connection to the label must be done with the LabelOpenEx command.
When accessing NiceLabel with LabelOpenEx command then you get the interface to the
label. Label interface can be used to access all available NiceLabel ActiveX interfaces
and their properties and/or methods described in this manual
Please refer to the figure 2 for the hierarchy of the interfaces.
IMPORTANT!
The commands LabelOpen and LabelOpenEx are not equivalents and must not be
mixed. Use only one method at a time. When using LabelOpen, you interact with the label
using label ID, when using LabelOpenEx, you interact with the label base on the label
interface.
www.nicelabel.com
August 2011
Early binding
To use early binding, you must first set a reference to NiceLabel ActiveX interface. The
reference is stored in the type library file. For more information refer to the chapter What
is a Type Library?
If you need to integrate NiceLabel print engine to application running in .NET
environment, you will have to add NiceLabel Wrapper DLL to your development
environment in the same ways as the type library.
To create a new instance of NiceLabel using early binding use the command:
Dim oNice As NiceApp
Set oNice = New NiceApp
NiceApp class is part of NiceLabel Wrapper. More about NiceLabel Wrapper please read
in its section in this document.
In either case, you can first try to get an existing instance of NiceLabel. If NiceLabel is not
already running, the action will return an error message, so you will have to run a new
instance of NiceLabel.
To connect to an already running instance of NiceLabel you would use GetObject
(regardless whether you're using early or late binding). If existing NiceLabel is not found in
memory, the error handler will be returned for your evaluation.
Dim oXL As Object
Set oXL = GetObject("NiceLabel5.Application")
www.nicelabel.com
August 2011
www.nicelabel.com
August 2011
.After that you have the possibility to use NiceLabel ActiveX types (NiceApp, NiceLabel,
etc), methods and properties from your application. Early binding is also available.
Visual Basic 6 has no access to classes start with I, like IBarcode, IText,.. With usage of
Type Library (chapter 1.2.3) Visual Basic 6 has access to classes start with I.
www.nicelabel.com
August 2011
After that use of NiceLabel ActiveX types (NiceApp, NiceLabel, etc), methods and
properties is possible (early binding). After the certain object is no longer needed you
must use the proper Free method to ensure that no longer needed NiceLabel objects are
released correctly (otherwise garbage collector may not dispose them immediately).
www.nicelabel.com
August 2011
After that you have the possibility to use NiceEngine ActiveX types (NiceApp, NiceLabel,
etc), methods and properties from your application. Early binding is also available.
.Net Microsoft Visual Studio
You must include NiceEngine wrapper in your project:
After that use of NiceEngine ActiveX types (NiceApp, NiceLabel, etc), methods and
properties is possible (early binding). After the certain object is no longer needed you
must use the proper Free method to ensure that no longer needed NiceLabel objects are
released correctly (otherwise garbage collector may not dispose them immediately).
www.nicelabel.com
August 2011
NiceLabel Pro
Create labels
NO
YES
Print labels
YES
YES
Needs custom
application for
initiating of label
printing?
YES
NO
ActiveX
programming
interface
YES
YES
MORE
ONE
NiceLabel5.Engine
NiceLabel5.Application
Instance quantity
Class Name
Hardware key
Software key
www.nicelabel.com
August 2011
During product uninstallation, the install program can call the procedure to deactivate license on-line
When on-line internet connection is not available, products installation can call a
routine, that will start the Activation Wizard. Using the SDKs activation WebPage,
product can be fully activated using Registration Number and Activation Code.
Prior to calling the on-line activation routine, install program can verify the entered
key number (just for validity of the key)
Status of the activation can also be verified (if the product is already installed or not)
SDKLicense.dll needs for Software key licensing. It is installed together with NiceLabel
SDK deployment package. Third party application can call this DLL to achieve
activation/deactivation of the SDK package.
The DLL is located in the location, where NiceEngine is installed. This is normally on
C:\Program Files\Common Files\EuroPlus Shared\NiceEngine 5
Function
Version
Availability
SLInit
5.2
SLActivateLicense
5.2
SLDeactivateLicense
5.2
SLGetLicense
5.2
SLManageLicense
5.2
SLValidateKeyNumber
5.2
SLInit
Description:
Function must be called prior to all other functions. It sets the language of the library,
error messages will be returned in desired languages.
Possible values for the languages:
English
=1
Slovenian
=2
Croatian
=3
German
=4
Danish
=5
French
=6
Spanish
=7
Italian
=8
Finish
=9
Dutch
= 10
Portuguese = 11
Czech
= 12
Polish
= 13
Hungarian = 14
Russian
= 15
Greek
= 16
Swedish
= 18
www.nicelabel.com
August 2011
Hebrew
= 19
Slovak
= 20
Lithuanian = 21
Chinese (Traditional) = 22
Chinese (Simplified) = 23
Thai
= 24
Korean
= 25
Japanese = 26
Ukrainian = 27
Norwegian = 29
Return Value is 0.
Syntax:
Function SLInit (Language: integer) : integer
SLActivateLicense
Description:
Function will perform on-line activation of the key number provided in the KeyNumber
parameter. To perform the activation, Name, Company, Country and Email parameters
must be provided.
Reason parameter needs to be provided, if the key number is activated not for the first
time. See return codes for more explanation.
In case of an error, the buffer provided by ErrorMessage parameter is filled with the
message, up to MaxMsgLen length.
Return value of the call:
0 success
2 Reason needs to be provided to the call
3 Country was not provided
4 Email was not provided
Other non-zero value unknown error happened. Detailed description of the error is
provided in ErrorMessage parameter
Syntax:
Function SLActivateLicense (Name, Company, Country, EMail, Reason,
KeyNumber: PChar; ErrorMessage: PChar; MaxMsgLen: integer) :
integer
SLDeactivateLicense
Description:
Function will perform on-line deactivation of the key number provided in the KeyNumber
parameter.
In case of an error, the buffer provided by ErrorMessage parameter is filled with the
message, up to MaxMsgLen length.
www.nicelabel.com
August 2011
SLGetLicense
Description:
Function verifies the status of activation on the system. When the product is already
activated, the KeyNumber is returned in KeyNumber parameter (buffer of 26 or more
bytes needs to be provided.
When SolutionID parameter is provided, it will be filled with the SolutionID parameter of
the Key (refer to Nicelabel SDK User Guide for more information)
Return value:
0 product is activated
-1 product is not activated
Syntax:
Function SLGetLicense (KeyNumber: PChar; SolutionID: PWORD):
integer
SLManageLicense
Description:
Function is called to perform activation of the product (product is not activated yet) or
show the license information (when product is already activated).
Function will show the activation wizard, which will guide the user through the process of
license activation.
Return value:
0 success
Syntax:
function SLManageLicense (hParent: THandle) : integer
SLValidateKeyNumber
Description:
Function verifies the key, provided in KeyNumber parameter.
www.nicelabel.com
August 2011
Return value:
0 Key is valid
-1 Key is not valid.
Syntax:
Function SLValidateKeyNumber (KeyNumber: PChar) : integer
Version
Availability
3,4,5
4
4,5
5
Properties
Version
Availability
Application
3,4,5
DetailedMessage
3,4,5
ErrorID
3,4,5
ErrorMessage
3,4,5
IsLabelExportable
3,4,5
IsDemo
4,5
JobRun
3,4,5
ProcessID
4,5
LabelClose
3,4,5
LabelCreate
3,4,5
LabelExportToPocket
3,4,5
LabelGeneralExport
3,4,5
LabelGetVarCount
3,4,5
LabelGetVarName
3,4,5
LabelGetVarProperty
3,4,5
LabelOpen
3,4,5
LabelOpenEx
3,4,5
LabelOpenExForPrinter
4,5
LabelOpenForPrinter
4,5
LabelPrint
3,4,5
LabelSessionEnd
3,4,5
LabelSessionPrint
3,4,5
LabelSessionStart
3,4,5
LabelSetPrinter
3,4,5
LabelSetPrintJobName
LabelSetVar
www.nicelabel.com
4,5
3,4,5
August 2011
LabelTestConnection
3,4,5
Login
3,4,5
Quit
3,4,5
SetApplicationProperty
SetDefaultPrinter
5
4,5
Application
Description:
Application method returns an interface to the niceApp.
Syntax:
Property Application As NiceLabel
Access Rights:
read-only
Method:
Advanced
DetailedMessage
Description:
This is a read-only property, which holds additional information (if they exist) about the
error (if it has occurred).
Syntax:
Property DetailedMessage As String
Access Rights:
read-only
Method:
Basic, Advanced
See also:
ErrorID, ErrorMessage
ErrorID
Description:
www.nicelabel.com
August 2011
This is a read-only property that contains last error code (if error occurred).
Syntax:
Property ErrorID As Long
Access Rights:
read-only
Method:
Basic, Advanced
See also:
DetailedMessage, ErrorMessage
ErrorMessage
Description:
This is a read-only property that holds the last error message (if the error has occurred).
Syntax:
Property ErrorMessage As String
Access Rights:
read-only
Method:
Basic, Advanced
See also:
DetailedMessage, ErrorID
ExecuteMacro
Description:
This function executes a Macro (DDE) command.
Syntax;
Function ExecuteMacro(LabelID As Long, Macro As String) As Boolean
Method:
Basic
www.nicelabel.com
August 2011
GetOpenedLabels
Description:
The niceApp interface is extended to support returning a list of opened labels. The
command is defined as:
Method returns a multiline text string, each line containing the path name of the opened
label. In case the label is not saved yet (path name does not exist), the title of the label is
returned.
Syntax:
GetOpenedLabels()
Method:
Advanced
See also:
LabelOpenEx
GetVersion
Description:
GetVersion method can be used to check NiceLabel version.
Method returns a string value regarding to VersionID value.
VersionID value can be of the following:
0 complete info
1 - Major version
2 - Minor version
3 - Release version
4 - Build number
Syntax:
Function GetVersion(VersionID As Integer) As String
Method:
Advanced
GetLabelDownloadVariablesList
Description:
GetLabelDownloadVariablesList method returns list of label variables. It has to be set
before using metods like ExportToPrinter or DownloadToPrinter.
Method returns interface to the variable list of label variables.
Syntax:
Function GetLabelDownloadVariablesList(LabelID As Long) As
VariableList
www.nicelabel.com
August 2011
Method:
Advanced
See also:
ExportToPrinter, DownloadToPrinter
IsDemo
Description:
This property tells the client application whether the server is running in DEMO mode or
not.
Syntax:
Property IsDemo As Boolean
Access Rights:
read-only
Method:
Basic, Advanced
IsLabelExportable
Description:
IsLabelExportable method can be used to check in advance, if the label can be exported.
This function can be used from applications, which later use the ExportToPocketPC
ActiveX method.
When label can be exported, the method returns TRUE.
Syntax:
Function IsLabelExportable() As Boolean
Method:
Advanced
See also:
LabelExpotToPocket
www.nicelabel.com
August 2011
JobRun
Description:
Function executes specified JOB file.
Syntax:
Function JobRun(FileName As String) As Boolean
Method:
Basic, Advanced
LabelClose
Description:
Closes the label with specified ID. If it succeeds TRUE is returned.
Syntax:
Function LabelClose(LabelID As Long) As Boolean
Method:
Basic
See also:
LabelOpen
LabelCreate
Description:
Creates new label document and returns interface as a result
Syntax:
Function LabelCreate() As INiceLabel
Method:
Advanced
LabelExportToPocket
Description:
Function executes the same action as choosing the command File|Export|Export to
terminal. All the necessary files are created in directory specified as second parameter.
Syntax:
Function LabelExportToPocket(LabelID As Long, ExportDir As String)
As Boolean
Method:
www.nicelabel.com
August 2011
Basic, Advanced
See also:
IsLabelExportable
LabelGeneralExport
Description:
Performs an export of the label specified by LabelID (this label has to be open with
LabelOpen call where you retrieve the ID of the label), the exported files are placed into
the ExportDir folder
Syntax:
Function LabelGeneralExport(LabelID As Long, ExportDir As String)
As Boolean
Method:
Basic
LabelGetVarCount
Description:
Function returns number of variables on the label with specified label ID The returned
value is zero based index. To get an actual number of variables on the label you have to
add up 1.
Syntax:
Function LabelGetVarCount(LabelID As Long) As Long
Example:
Label has 5 variables. LabelGetVarCount will return number 4.
Label has 17 variables. LabelGetVarCount will return number 16.
Method:
Basic
See also:
LabelGetVarName, LabelGetVarProperty, LabelSetVar
LabelGetVarName
Description:
Function returns the variable name with the specified variable number (VarID) on the label
with specified label ID. VarID is a number of variable from 1 to number of variables on the
label (returned by LabelGetVarCount function).
www.nicelabel.com
August 2011
Syntax:
Function LabelGetVarName(LabelID As Long, VarID As Long) As String
Method:
Basic
See also:
LabelGetVaCount, LabelGetVarProperty, LabelSetVar
LabelGetVarProperty
Description:
Function returns a property of a variable with the name VarName. PropName specifies
name of the property to be returned.
Possible values for PropName are:
Value
Name
ID
Used
VarQuantity
InputType
Description
Prefix
Suffix
Length
FixedLength
MultiLine
LineCount
LineLength
FormatID
Justification
PadChar
WordWrap
MinValue
MaxValue
HasMinValue
HasMaxValue
www.nicelabel.com
August 2011
InputPicture
OutputPicture
PictureType
Description
Prompt
System clock
PrinterClock
Global
Generated
Database
www.nicelabel.com
August 2011
Opens an existing label. As a parameter the label file name (LabelName) should be
specified. If the label is successfully opened, a label ID is returned, which will later be
used in other functions. If it doesn't succeed -1 if is returned. The reason for failure can be
obtained from ErrorMessage and DetailedMessage functions.
PrinterName is optional parameter, and means that the label will be opened with that
printer.
Syntax:
Function LabelOpen(FileName As String) As Long
Method:
Basic
See also:
LabelClose
LabelOpenEx
Description:
LabelOpenEx method returns the interface of label selected with the filename. For more
information about INiceLabel please read INiceLabel chapter.
PrinterName is optional parameter, and means that the label will be opened with that
printer.
Syntax:
Function LabelOpenEx(FileName As String) As IniceLabel
Method:
Advanced
LabelOpenExForPrinter
Description:
This method is the same as LabelOpenEx just that it opens the label with the specified
printer (if the printer does not exist then the label is not opened)
Syntax:
Function LabelOpenExForPrinter(FileName As String, PrinterName As
String) As INiceLabel
Method:
Advanced
www.nicelabel.com
August 2011
LabelOpenForPrinter
Description:
This method is the same as LabelOpen just that it opens the label with the specified
printer (if the printer does not exist then the label is not opened)
Syntax:
Function LabelOpenForPrinter(FileName As String, PrinterName As
String) As Long
Method:
Basic
LabelPrint
Description:
This function prints the label with the specified label ID. Quantity must be represented as
a string.
The quantity parameter is the print quantity of the labels; it can be a number, or one of
following words:
VARIABLE
UNLIMITED
The first parameter means printing on the base of the variable quantity (one of the
variables sets the quantity), the second one means unlimited printing (printing from the
whole database file for example).
Skip, Identical and LabelSets are optional parameters. Skip parameter must be provided
in order you want to skip a number of labels before printing. Identical parameter defines
the amount of identical copies of the label. LabelSets is the number of label sets which
you want to print.
Syntax:
Function LabelPrint(LabelID As Long, Quantity As String, Skip As
String, Identical As String, LabelSets As String) As Boolean
Example
Success = LabelPrint(1,1)
Method:
Basic
See also:
LabelSessionPrint, LabelSessionStart, LabelSessionEnd, LabelSetPrinter
www.nicelabel.com
August 2011
LabelSessionEnd
Description:
The function ends print session.
Syntax:
Function LabelSessionEnd(LabelID As Long) As Boolean
See also:
LabelSessionStart, LabelSessionPrint, LabelPrint, LabelSetPrinter
Method:
Basic
LabelSessionPrint
Description:
You send the data stream to printer using this function.
This function prints the label with the specified label ID. Quantity must be represented as
a string.
The quantity parameter is the print quantity of the labels; it can be a number, or one of
following words:
VARIABLE
UNLIMITED
The first parameter means printing on the base of the variable quantity (one of the
variables sets the quantity), the second one means unlimited printing (printing from the
whole database file for example).
You can use multiple LabelSessionPrint commands one after another and join them in
single data stream. The stream is not closed until the LabelSessionEnd occurs.
Syntax:
Function LabelSessionPrint(LabelID As Long, Quantity As String) As
Boolean
See also:
LabelSessionStart, LabelSessionEnd, Labelprint, LabelSetPrinter
Method:
Basic
www.nicelabel.com
August 2011
LabelSessionStart
Description:
All three functions (LabelSessionStart, LabelSessionPrint, LabelSessionEnd) are used
together. If ordinary command LabelSessionPrint is used, every time a complete data
stream for printer is sent to printer. If you want to join multiple Print commands into one
data stream, you can use the LabelSessionStart command followed with any number of
LabelSessionPrint commands and in the end use the LabelSessionEnd command. The
stream is not closed until the LabelSessionEnd occurs. These commands offer optimal
printing ,because and it is not necessary to generate a complete data stream for each
print session.
SessionStart method clean label variables. LabelSetVar has to be used after
LabelSessionStart method.
Syntax:
Function LabelSessionStart(LabelID As Long) As Boolean
Method:
Basic
See also:
LabelSessionPrint, LabelSessionEnd, LabelPrint, LabelSetPrinter
LabelSetPrinter
Description:
This function changes the printer on which the label will be printed.
Syntax:
Function LabelSetPrinter(LabelID As Long, PrinterName As String)
As Boolean
Method:
Basic
See also:
LabelSessionPrint, LabelSessionEnd, LabelSessionStart, LabelPrint
LabelSetPrintJobName
Description:
Using this function you can set the Print job name that NiceLabel will use at the next print
command. After printing the name is returned in normal state.
Syntax:
www.nicelabel.com
August 2011
LabelTestConnection
Description:
With this function you can check the current link between LabelID and name of the loaded
label file. In case the OLE connection was broken or NiceLabel application was closed,
you can use this function as a tester for OLE server activity. If function returns false, this
means that somebody has closed the label file and current LabelID should be discarded.
You should also call LabelOpen function again.
Syntax:
Function LabelTestConnection(LabelID As Long, FileName As String)
As Boolean
Method:
Basic
Login
Description:
Performs login into NiceLabel if it has not been executed already.
Syntax:
www.nicelabel.com
August 2011
read-only
Access Rights:
read-only
Method:
Basic, Advanced
Quit
Description:
This procedure closes the NiceLabel if it was opened with the client application.
Syntax:
Quit
Method:
Basic, Advanced
SetDefaultPrinter
Description:
This method set the default printer for NiceLabel.
Returned result :
1 - the printer could not be set
0 - the printer could be set
Syntax:
Function SetDefaultPrinter(DefaultPrinterName As String) As Long
Method:
www.nicelabel.com
August 2011
Basic, Advanced
SetApplicationProperty
Description:
Function enables dialogs to be shown when application is run under system service.
Syntax:
Function SetApplicationProperty(PropertyName As String, PropertyValue As String) As
Long
Explanation of the parameters:
PropertyName
Name of the property that you want to set, only one property is available
at this time: 'ShowDialogsDuringAutomation'
PropertyValue
Value of the property, for the property 'ShowDialogsDuringAutomation'
value '1' means that the dialogs will be shown when application is run
through ActiveX, any other value means that the dialogs will not be shown
www.nicelabel.com
August 2011
INiceLabel
Objects As
IObjectsList
Item As IObject
IBarcode
Variable As IVar
IRectangle
Variable As IVar
IText
Variable As IVar
IParagraph
Variable As IVar
IOLEObject
Variable As IVar
IRTF
Variable As IVar
IGraphics
Variable As IVar
FindByID As IVar
Variables As
IVariablesList
FindByName As IVar
Item As IVar
CreatePrompted As IVar
GlobalVariables
As IVariablesList
Create As IVar
Functions As
IFunction List
CreateExternalFunction As
IEXTFunction
InputVars As IVariableList
FindByID As IVar
OutputVars As IVariableList
FindByName As IVar
FindByID As IFunction
Item As IVar
CreatePrompted As IVar
FindByName As IFunction
Create As IVar
Item As IFunction
Databases As
IDatabaseList
Fields As IFieldList
FindByName As IDBField
Variable As IVar
Item As IDBField
FindByID As IDatabase
FindByName As IDatabase
InputVars As IVariableList
FindByID As IVar
Item As IDatabase
OutputVars As IVariableList
FindByName As IVar
Item As IVar
CreatePrompted As IVar
Create As IVar
Parameters As
IParameterList
Item As IParameter
Variable As IVar
Create As IParameter
www.nicelabel.com
August 2011
Version
Availability
Properties
Version
Availability
GetProperty
3,4,5
AnchorElementID
Move
3,4,5
AnchorLevel
3,4,5
Resize
3,4,5
AnchorPoint
3,4,5
SetContents
3,4,5
AutoCDCalculation
3,4,5
SetVariable
3,4,5
BarcodeType
3,4,5
Color
3,4
4,5
Contents
3,4,5
ContentsMask
3,4,5
FormatID
3,4,5
HasQuietZone
3,4,5
Height
3,4,5
ID
3,4,5
IncludeCD
3,4,5
IsLocked
3,4,5
Kind
3,4,5
Left
3,4,5
MaxLength
3,4,5
Name
3,4,5
PageNumber
3,4,5
PrintAsGraphics
3,4,5
ResizeFlag
3,4,5
RotateFlag
3,4,5
Rotation
3,4,5
Selected
3,4,5
Status
3,4,5
Top
3,4,5
Variable
3,4
Width
3,4,5
ZOrder
3,4,5
AnchorElementID
Description:
www.nicelabel.com
August 2011
Currently not used. Intended to be used, when position of one element can be dependant
on position/size of another element.
Syntax:
AnchorElementID As Long
AnchorLevel
Description:
Currently not used.
Syntax:
AnchorLevel As Long
AnchorPoint
Description:
Identifies the point of the object, which is fixed on the label. If the object size is changed,
the specified AnchorPoint remains on the same position.
Possible values are:
Value
Description
top left
top center
top right
mid left
mid center
mid right
bottom left
bottom center
bottom right
Syntax:
AnchorPoint As Long
See also:
Hight, Left, Top, Width
www.nicelabel.com
August 2011
AutoCDCalculation
Description:
When this property is true, CheckDigit for the barcode is calculated automatically only
the contents should be provided. When the property value is false, NiceLabel will verify
the contents of the barcode, as the checkdigit is provided together with the data.
Syntax:
AutoCDCalculation As Boolean
See also:
IncludeCD
BarcodeType
Description:
Returns the Barcode Type.
Possible values are:
Value
www.nicelabel.com
Description
EAN13
EAN8
UPC_A
UPC_E
I2OF5
CODE39
CODE128A
CODE128B
CODE128C
10
CODABAR
11
CODE128
12
GS1-128
13
POSTNET32
14
POSTNET37
15
POSTNET52
16
POSTNET62
17
BOOKLAND
18
DISTRIBUTION
19
CODE93
www.nicelabel.com
August 2011
20
NG_EAN13
21
NG_EAN8
22
PDF417
23
BC412
24
DATAMATRIX
25
MAXICODE
26
EAN128
27
AZTEC
28
QR
29
SSCC
30
MSI
31
CBLOCK_F
32
PHARMACODE
33
EXTCODE39
34
EAN14
35
KIX
36
ITF14
37
2DPHARMACODE
38
CODE32
39
EAN13+2
40
EAN13+5
41
EAN8+2
42
EAN8+5
43
UPC_A+2
44
UPC_A+5
45
UPC_E+2
46
UPC_E+5
47
ITF16
48
MICROPDF
49
GS1 Databar
50
Addon 2
51
Addon 5
52
53
Plessy
55
Anker
56
MicroQR
August 2011
60
61
Dun 14
62
InfoGlyph
63
UPC E (tip 1)
66
SSCC18
Syntax:
Property BarcodeType As String
Access Rights:
read-only
See also:
Color, ContentsMask
Color
Description:
With 32-bit value you can specify any RGB color. The color value has the following
hexadecimal form:
0x00bbggrr
The low-order byte (rr) contains a value for the relative intensity of red; the second byte
(gg) contains a value for green; and the third byte (bb) contains a value for blue. The
fourth byte byte must be zero.
Each color parameter can range from 0x0 to 0xFF.
Syntax:
Color As Long
See also:
BarcodeType, ContentsMask
Contents
Description:
Returns the current contents of the element.
Syntax:
Property Contents As String
www.nicelabel.com
August 2011
Access Rights:
read-only
ContentsMask
Description:
Description
All
Numeric
Alphanumeric
Letters
7 bit
Hex
Date
Time
Details about the characters in each format can be found in formats.def file, located on
BIN\SYSTEM directory.
Syntax:
FormatID As Long
GetPropery
Description:
Returns the property of a barcode.
www.nicelabel.com
August 2011
IncludeCD
Description:
For some barcode symbologies, CheckDigit is optional (Code39, I2of5). This property
specifies, if checkdigit is to be included in the barcode or not.
www.nicelabel.com
August 2011
Syntax:
IncludeCD As Boolean
See also:
AutoCDCalculation
IsLocked
Description:
When the elements position is locked on the label, this property has the value TRUE
Syntax:
IsLocked As Boolean
Kind
Description:
Element kind.
Possible values are:
Value
Description
301
TextObject
302
RectangleObject
303
BitmapObject
304
BarcodeObject
305
LineObject
306
InverseObject
307
OleObject
308
309
ParagraphObject
312
RTFTextObject
313
EllipseObject
Syntax:
Property Kind As Long
Access Rights:
read-only
www.nicelabel.com
August 2011
Left
Description:
Left position of the element (in 0.01 mm units).
Syntax:
Property Left As Long
Access Rights:
read-only
See also:
Hight, AnchorPoint, Top, Width
MaxLenght
Description:
www.nicelabel.com
August 2011
Syntax:
Move(X As Long, Y As Long)
PageNumber
Description:
The Page index, where the element is located. When Duplex print is used, this index can
have the value 0 (first page) or 1 (second page). When duplex printing is not enabled, this
property is ignored (the value should always be 0).
Syntax:
PageNumber As Long
See also:
PrintAsGraphics
PrintAsGraphics
Description:
When this property is set to TRUE, the barcode will always be printed as graphics, even if
the printer supports printing it with an internal command.
Syntax:
PrintAsGraphics As Boolean
See also:
PageNumber
Resize
Description:
Resize the element to the size Width, Height. The element is resized to the closest size in
case, that all sizes are not possible.
Syntax:
Resize(Width As Long, Height As Long)
See also:
ResizeFlag
ResizeFlag
Description:
Flag, which defines, how the object can be resized.
www.nicelabel.com
August 2011
Description
no resizing
0x88
0x22
0x55
Syntax:
Property ResizeFlag As Long
Access Rights:
read-only
See also:
Resize
RotateFlag
Description:
Flag, which defines, how the object can be rotated.
Possible values are:
Value
Description
no rotation
0x07
90 degrees rotation
0x02
0xFF
Syntax:
Property RotateFlag As Long
Access Rights:
read-only
See also:
Rotation
www.nicelabel.com
August 2011
Rotation
Description:
Specifies the elements rotation. When the element can be rotated only in steps of 90
degrees.
The valid values for the property are:
Value
Description
0 deg.
90 deg.
180 deg.
270 deg.
When the element can be rotated in steps of 1 degree, the property has the value from 0
to 359.
Syntax:
Rotation As Long
See also:
Rotation
Selected
Description:
When the element is selected, this property is TRUE.
Syntax:
Selected As Boolean
SetContents
Description:
When the contents of an element should be changed, SetContents method should be
called. In case of success (the Value is valid for the element), the function returns 0. In
case of an error, the function returns 1.
Syntax:
Function SetContents(Value As String) As Long
www.nicelabel.com
August 2011
SetVariable
Description:
Connects the element to the variable with ID. If the return value of the function is 1, then
some error occured during the connection. The best example for this is that you want
connect variable with fixed length to an element which requires different fixed lenght.
(EAN13 barcode). In such case element is not connected to any variable it is fixed.
Syntax:
Function SetVariable(ID As Long) As Long
See also:
Variable
Status
Description:
Status of the object.
Possible values are :
Value
Description
OK
Error condition
Phantom
Syntax:
Property Status As Long
Access Rights:
read-only
Top
Description:
Top position of the element (in 0.01 mm units).
Syntax:
Property Top As Long
www.nicelabel.com
August 2011
Access Rights:
read-only
See also:
Hight, Left, AnchorPoint, Width
Variable
Description:
Returns the interface to the variable, which is attached to the element.
Syntax:
Property Variable As IVar
Access Rights:
read-only
See also:
SetVariable
Width
Description:
Width of the element (in 0.01 mm units).
Syntax:
Property Width As Long
Access Rights:
read-only
See also:
Hight, Left, Top, AnchorPoint
ZOrder
Description:
Value of Z order of the object position. When the Zorder value is the highest, the element
is placed on the top of all others.
Syntax:
ZOrder As Long
www.nicelabel.com
August 2011
Access Rights:
read-only
Version
Properties
Availability
SelectRecords
4,5
Version
Availability
Alias
3,4,5
DBPassword
3,4,5
Delimiter
3,4,5
Description
3,4,5
DriverType
3,4,5
EPDSConnection
3,4,5
Fields
3,4,5
ID
3,4,5
InputVars
3,4,5
IsDelimited
3,4,5
IsUsed
4,5
Kind
3,4,5
Name
3,4,5
Navigation
3,4,5
Order
3,4,5
OutputVars
3,4,5
Parameters
3,4,5
ReviewBeforePrint
3,4,5
SelectedRecordCount
4,5
Separator
3,4,5
SQL
3,4,5
Table
3,4,5
Alias
Description:
Alias represents the name of the alias for the database. See BDE Administrator.
Syntax:
Alias As String
www.nicelabel.com
August 2011
DBPassword
Description:
DBPassword property represents the password for the database.
Syntax:
DBPassword As String
Delimiter
Description:
With this property you can select the Delimiter character that is used when separator
character is used in the text field itself. The delimiter should be used to enclose such field.
Text between two delimiter characters is treated as one field although it contains the field
separator character.
Syntax:
Delimiter As String
Description:
With this property you can select the Separator character that is used for a border
between two fields in a text file.
Syntax:
Separator As String
See also:
Separator, IsDelimited
DriverType
Description:
DriverType is in main driver name. You can find suitable names in BDE Administrator and
also in NiceLabel Pro in Database dialog box under the driver selection.
Syntax:
DriverType As String
See also:
Name, Table, Order, ReviewBeforePrint
www.nicelabel.com
August 2011
EPDSConnection
Description:
This property is defining the database connection, as is internally used by NiceLabel and
other Nice programs.
Syntax:
Property EPDSConnection As String
Fields
Description:
Returns the interface to the fields which are present in the database.
Syntax:
Property Fields As IFieldList
Access Rights:
read-only
ID
Description:
ID of the database.
Syntax:
Property ID As Long
Access Rights:
read-only
InputVars
Description:
Returns the interface to the variable list for input variables.
Syntax:
Property InputVars As IVariableList
Access Rights:
read-only
www.nicelabel.com
August 2011
See also:
OutputVars
IsDelimited
Description:
If data fields in your text file are separated with some special character, you should set
this property to TRUE value. In case that your data fields always occupy the same
number of characters this property should be set to FALSE.
Syntax:
IsDelimited As Boolean
See also:
Separator, Delimiter
IsUsed
Description:
If this property is true then this function is used on the label
Syntax:
IsUsed As Boolean
Kind
Description:
Kind property for the database is always set to 4.
Value
www.nicelabel.com
Description
Concatenate
Subset
Linear Function
Database
EAN 128
CD Algo
Date Addition
Euro
August 2011
External
10
SSCC
Syntax:
Property Kind As Long
Access Rights:
read-only
Name
Description:
In the Name property name of the database is stored. This property can be set in
NiceLabel Pro on General tab of Database dialog box.
Syntax:
Name As String
See also:
DriverType, Table, Order, ReviewBeforePrint
Navigation
Description:
Navigation property represents how record retrieving will be set for selected database
access.
Possible values for the Navigation property are:
Value
Description
First
All
Select
Last
Syntax:
Navigation As Long
See also:
www.nicelabel.com
August 2011
SelectRecords, SelectRecordsCount
Order
Description:
Order property represents the name of the field which is used for sorting records.
Syntax:
Order As String
See also:
Name, Table, DriverType, ReviewBeforePrint
OutputVars
Description:
Returns the interface to the variable list for output variables.
Syntax:
Property OutputVars As IVariableList
Access Rights:
read-only
See also:
InputVars
Parameters
Description:
Returns the interface to the parameters (filters) which are present in the database.
Syntax:
Property Parameters As IParameterList
Access Rights:
read-only
See also:
SQL
www.nicelabel.com
August 2011
ReviewBeforePrint
Description:
ReviewBeforePrint property's value is TRUE, if ReviewBeforePrint option is enabled in
Database Access definition. This option makes it possible to change the result of a
function just before using its results on the label.
Syntax:
ReviewBeforePrint As Boolean
See also:
Name, Table, Order, DriverType
SelectRecords
Description:
Execute this method if you would like to show NiceLabels Record Selection dialog box,
where the user has possibility to select which records from the database will be printed.
Parent parameter, which must be passed to the SelectRecords function is a handle to the
parent window on which the Record Selection dialog box will appear.
Syntax:
Function SelectRecords(Parent As Long) As Long
Access Rights:
read-only
See also:
Navigation, SelectRecordsCount
SelectedRecordCount
Description:
Returns the number of selected records for the database, which is associated with this
IDatabase interface. If no records are selected or database connection does not exists the
property contains - 1
Syntax:
Property SelectedRecordCount As Long
Access Rights:
read-only
See also:
www.nicelabel.com
August 2011
SelectRecords, Navigation
Separator
Description:
With this property you can select the Separator character that is used for a border
between two fields in a text file.
Syntax:
Separator As String
See also:
IsDelimited, Delimiter
SQL
Description:
With SQL property you can select SQL statements for the database. Changing SQL
statements can lead to failure in reading data from table.
Syntax:
SQL As String
Access Rights:
read-only
See also:
Parameters
Table
Description:
Table property represents the name of the table, which is used on this database access.
Syntax:
Table As String
See also:
Name, DriverType, Order, ReviewBeforePrint
www.nicelabel.com
Methods
August 2011
Version
Availability
Item
3,4,5
FindByID
3,4,5
FindByName
3,4,5
Properties
Version
Availability
Count
3,4,5
Count
Description:
Count property returnts the number of databases connected to the label.
Syntax:
Property Count As Long
Access Rights:
read-only
Item
Description:
Returns the interface to the database. Database is selected with Index.
Syntax:
Function Item(Index As Long) As IDatabase
FindByName
Description:
Returns the interface to the database. Database is selected with the name of the
database.
Syntax:
Function FindByName(Name As String) As IDatabase
See also:
FindByID
FindByID
Description:
Returns the interface to the database. Database is selected with database ID.
www.nicelabel.com
August 2011
Syntax:
Function FindByID(ID As Long) As IDatabase
See also:
FindByname
Version
Availability
Properties
Version
Availability
Alias
3,4,5
DBPassword
3,4,5
Delimiter
3,4,5
DriverType
3,4,5
IsDelimited
3,4,5
Separator
3,4,5
Alias
Description:
Alias represents the name of the alias for the database. See BDE Administrator.
Syntax:
Alias As String
DBPassword
Description:
DBPassword property represents the password for the database.
Syntax:
DBPassword As String
Delimiter
Description:
Property for setting or retrieving the delimiter char that is used in the text database.
Syntax:
Delimiter As String
www.nicelabel.com
August 2011
DriverType
Description:
DriverType is in main driver name. You can find suitable names in BDE Administrator and
also in NiceLabel Pro in Database dialog box under the driver selection.
Syntax:
DriverType As String
IsDelimited
Description:
If data fields in your text file are separated with some special character, you should set
this property to TRUE value. In case that your data fields always occupy the same
number of characters this property should be set to FALSE.
Syntax:
IsDelimited As Boolean
See also:
Separator
Separator
Description:
With this property you can select the Separator character that is used for a border
between two fields in a text file.
Syntax:
Separator As String
See also:
IsDelimited
www.nicelabel.com
Version
Availability
Properties
Version
Availability
IsSelected
3,4,5
Length
3,4,5
Name
3,4,5
August 2011
Number
3,4,5
Offset
3,4,5
Variable
3,4,5
IsSelected
Description:
When the field is selected for usage on the label, this property is TRUE.
Syntax:
Property IsSelected As Boolean
Access Rights:
read-only
Length
Description:
Length property represents the length of the field.
Syntax:
Property Length As Long
Access Rights:
read-only
Name
Description:
Name property represents the name of the field.
Syntax:
Property Name As String
Access Rights:
read-only
Number
Description:
Number property represents the number of the field.
www.nicelabel.com
August 2011
Syntax:
Property Number As Long
Access Rights:
read-only
Offset
Description:
Offset property represents the offset of the beggining of the line. This property is available
only for text files.
Syntax:
Property Offset As Long
Access Rights:
read-only
Variable
Description:
Returns the interface to the variable, which is connected with the database field.
Syntax:
Property Variable As IVar
Access Rights:
read-only
Version
Availability
3,4,5
Properties
Version
Availability
Field
3,4,5
Relation
3,4,5
Variable
3,4,5
Field
Description:
Field property represents the name of the field which is used for filter.
Syntax:
www.nicelabel.com
August 2011
Field As String
Relation
Description:
Relation property represents relation between field and a variable.
Possible values for Relation are:
Value
Description
==
>
>=
<
<=
<>
LIKE
Syntax:
Relation As Long
SetVariable
Description:
Connects the element to the variable with ID. If the return value of the function is 1, then
some error occured during the connection. The best example for this is that you want
connect variable with fixed length to an element which requires different fixed lenght.
(EAN13 barcode). In such case element is not connected to any variable it is fixed.
Syntax:
Function SetVariable(ID As Long) As Long
See also:
Variable
Variable
Description:
Returns the interface to the variable, which is connected with the database field.
Syntax:
Property Variable As IVar
www.nicelabel.com
August 2011
Access Rights:
read-only
See also:
SetVariable
Version
Availability
Properties
Version
Availability
Definition
3,4,5
Description
3,4,5
ID
3,4,5
InputVars
3,4,5
IsContentsProvider
3,4,5
IsUsed
4,5
Kind
3,4,5
Name
3,4,5
OutputVars
3,4,5
ProviderName
ReviewBeforePrint
4,5
3,4,5
Definition
Description:
Definition property represents a string, which consists a definiton for the function.
Because of proper initialization of the label, this string is saved in a label file.
Syntax:
Definition As String
Description
Description:
In the Description property description of the function is stored.
Syntax:
Description As String
See also:
www.nicelabel.com
August 2011
Name, ReviewBeforePrint
ID
Description:
ID of the element
Syntax:
Property ID As Long
InputVars
Description:
Returns the interface to the variable list for input variables.
Syntax:
Property InputVars As IVariableList
Access Rights:
read-only
IsContentsProvider
Description:
If the function is contents provider for the element, then ISContentsProvider property has
value TRUE.
Syntax:
Property IsContentsProvider As Boolean
Access Rights:
read-only
ProviderName
IsUsed
Description:
If this property is true then this function is used on the label
Syntax:
Property IsUsed As Boolean
www.nicelabel.com
August 2011
Access Rights:
read-only
ProviderName
Kind
Description:
This property represents the value for the type of the function.
Possible values are:
Value
Description
Concatenate
Subset
Linear Function
Database
EAN 128
CD Algo
Date Addition
Euro
External
10
SSCC
Syntax:
Property Kind As Long
Acces Rights:
read-only
Name
Description:
Name property represents the name of the function.
Syntax:
Name As String
See also:
Description, ReviewBeforePrint
www.nicelabel.com
August 2011
OutputVars
Description:
Returns the interface to the variable list for output variables.
Syntax:
Property OutputVars As IVariableList
Access Rights:
read-only
ProviderName
Description:
ProviderName represents the name of the component, which manage the execution and
definition of the content's provider.
Syntax:
Property ProviderName As String
Access Rights:
read-only
See also:
IsContentsProvider
ReviewBeforePrint
Description:
ReviewBeforePrint property's value is TRUE, if ReviewBeforePrint option is enabled in
function definition. This option makes it possible to change the result of a function just
before using its results on the label.
Syntax:
ReviewBeforePrint As Boolean
Access Rights:
read-only
See also:
Name, Description
www.nicelabel.com
Methods
August 2011
Version
Availability
FindByName
3,4,5
Item
3,4,5
Properties
Version
Availability
Count
3,4,5
Count
Description:
Count property returns the number of fields, which are defined in the database.
Syntax:
Property Count As Long
Access Rights:
read-only
FindByName
Description:
Returns the interface to the field. Field is selected with the name of the field.
Syntax:
Function FindByName(Name As String) As IDBField
Item
Description:
Returns the interface to the field of the database. Field is selected with Index.
Syntax:
Function Item(Index As Long) As IDBField
Version
Availability
4,5
www.nicelabel.com
Properties
Version
Availability
Description
3,4,5
ID
3,4,5
InputVars
3,4,5
August 2011
Kind
3,4
Name
3,4
OutputVars
3,4
ReviewBeforePrint
3,4
Description
Description:
In the Description property description of the function is stored.
Syntax:
Description As String
See also:
Name, ReviewBeforePrint
ID
Description:
ID of the element
Syntax:
Property ID As Long
Access Rights:
read-only
InputVars
Description:
Returns the interface to the variable list for input variables.
Syntax:
Property InputVars As IVariableList
Access Rights:
read-only
Kind
Description:
This property represents the value for the type of the function.
www.nicelabel.com
August 2011
Description
Concatenate
Subset
Linear Function
Database
EAN 128
CD Algo
Date Addition
Euro
External
10
SSCC
Syntax:
Property Kind As Long
Acces Rights:
read-only
Name
Description:
Name property represents the name of the function.
Syntax:
Name As String
See also:
Description, ReviewBeforePrint
OutputVars
Description:
Returns the interface to the variable list for output variables.
Syntax:
Property OutputVars As IVariableList
www.nicelabel.com
August 2011
Access Rights:
read-only
ReviewBeforePrint
Description:
ReviewBeforePrint property's value is TRUE, if ReviewBeforePrint option is enabled in
function definition. This option makes it possible to change the result of a function just
before using its results on the label.
Syntax:
ReviewBeforePrint As Boolean
See also:
Name, Description
Version
Availability
CreateExternalFunction
3,4,5
FindByID
3,4,5
FindByName
3,4,5
Item
3,4,5
Properties
Version
Availability
Count
3,4,5
Count
Description:
Count property returns the number of functions, which are defined on the label.
Syntax:
Property Count As Long
Access Rights:
read-only
CreateExternalFunction
Description:
This method creates an external function. Output is an interface to the new function.
www.nicelabel.com
August 2011
Syntax:
Function CreateExternalFunction() As IExtFunction
FindByID
Description:
Returns the interface to the function. Function is selected with the ID of the function.
Syntax:
Function FindByID(ID As Long) As IFunction
See also:
FindByName
FindByName
Description:
Returns the interface to the function. Function is selected with the name of the function.
Syntax:
Function FindByName(Name As String) As IFunction
See also:
FindByID
Item
Description:
Returns the interface to the function. Function is selected with Index.
Syntax:
Function Item(Index As Long) As IFunction
Version
Availability
Properties
Version
Availability
Load
3,4,5
AnchorElementID
3,4,5
Move
3,4,5
AnchorLevel
3,4,5
Resize
3,4,5
AnchorPoint
3,4,5
SetVariable
3,4,5
FileName
3,4,5
FormatID
3,4,5
www.nicelabel.com
August 2011
Height
3,4,5
HorzMirror
3,4,5
ID
3,4,5
ImageType
4,5
IsLocked
3,4,5
Kind
3,4,5
Left
3,4,5
Name
3,4,5
OnMemoryCard
3,4,5
PageNumber
3,4,5
ResizeFlag
3,4,5
ResizeMode
3,4,5
RotateFlag
3,4,5
Rotation
3,4,5
Selected
3,4,5
Status
3,4,5
Top
3,4,5
Variable
3,4,5
VertMirror
3,4,5
Width
3,4,5
ZOrder
3,4,5
AnchorElementID
Description:
Currently not used. Intended to be used, when position of one element can be dependant
on position/size of another element.
Syntax:
AnchorElementID As Long
AnchorLevel
Description:
Currently not used.
Syntax:
AnchorLevel As Long
www.nicelabel.com
August 2011
AnchorPoint
Description:
Identifies the point of the object, which is fixed on the label. If the object size is changed,
the specified AnchorPoint remains on the same position.
Possible values:
Value
Description
top left
top center
top right
mid left
mid center
mid right
bottom left
bottom center
bottom right
Syntax:
AnchorPoint As Long
See also:
Hight, Left, Top, Width
FileName
Description:
FileName property represents the file name of the graphics file.
Syntax:
Property FileName As String
Access Rights:
read-only
FormatID
Description:
This is the ID of a contents format, which specifies the character set, which is allowed to
be used for the element.
www.nicelabel.com
August 2011
Description
All
Numeric
Alphanumeric
Letters
7 bit
Hex
Date
Time
Details about the characters in each format can be found in formats.def file, located on
BIN\SYSTEM directory.
Syntax:
FormatID As Long
Height
Description:
Height of the element (in 0.01 mm units).
Syntax:
Property Height As Long
Access Rights:
read-only
See also:
Left, AnchorPoint, Top, Width
HorzMirror
Description:
In case that HorzMirror property has value TRUE picture is mirrored horizontally. In the
other case picture remains unmirrored.
Syntax:
HorzMirror As Boolean
See also:
www.nicelabel.com
August 2011
VertMirror
ID
Description:
ID of the element
Syntax:
Property ID As Long
Access Rights:
read-only
ImageType
Description:
The method returns the type of the graphics
(0 , GF_UNKNOWN
1, GF_DIB - device independant bitmap
2, GF_METAFILE - metafile
3, GF_IMK - memory card picture
4, GF_E_METAFILE - enhanced metafile
)
Syntax:
Property ImageType As Long
Access Rights:
read-only
IsLocked
Description:
When the elements position is locked on the label, this property has the value TRUE
Syntax:
IsLocked As Boolean
Kind
Description:
Element kind.
Possible values are:
www.nicelabel.com
Value
Description
301
TextObject
302
RectangleObject
303
BitmapObject
304
BarcodeObject
305
LineObject
306
InverseObject
307
OleObject
308
309
ParagraphObject
312
RTFTextObject
313
EllipseObject
August 2011
Syntax:
Property Kind As Long
Access Rights:
read-only
Left
Description:
Left position of the element (in 0.01 mm units).
Syntax:
Property Left As Long
Access Rights:
read-only
See also:
Hight, AnchorPoint, Top, Width
Load
Description:
With Load method you can load the graphics. Filename is used for setting the file name of
the graphics file.
Syntax:
www.nicelabel.com
August 2011
Move
Description:
Move the element to the location X, Y
Syntax:
Move(X As Long, Y As Long)
Name
Description:
Name property represents the name of the graphics.
Syntax:
Name As String
OnMemoryCard
Description:
In case that graphics is stored on a memory card then OnMemoryCard propery has value
TRUE.
Syntax:
OnMemoryCard As Boolean
PageNumber
Description:
The Page index, where the element is located. When Duplex print is used, this index can
have the value 0 (first page) or 1 (second page). When duplex printing is not enabled, this
property is ignored (the value should always be 0).
Syntax:
PageNumber As Long
ResizeFlag
Description:
Flag, which defines, how the object can be resized.
www.nicelabel.com
August 2011
Description
no resizing
0x88
0x22
0x55
Syntax:
Property ResizeFlag As Long
Access Rights:
read-only
ResizeMode
Description:
With ResizeMode it is possible to set the way of resizing the graphics.
Possible values for ResizeMode are:
Value
Description
Original si1ze
Proportional resize
Fit to size.
Syntax:
ResizeMode As Long
RotateFlag
Description:
Flag, which defines, how the object can be rotated.
Possible values are:
Value
Description
no rotation
0x07
90 degrees rotation
0x02
www.nicelabel.com
0xFF
August 2011
Syntax:
Property RotateFlag As Long
Access Rights:
read-only
See also:
Rotation
Rotation
Description:
Specifies the elements rotation. When the element can be rotated only in steps of 90
degrees.
The valid values for the property are:
Value
Description
0 deg.
90 deg.
180 deg.
270 deg.
When the element can be rotated in steps of 1 degree, the property has the value from 0
to 359.
Syntax:
Rotation As Long
See also:
RotateFlag
Selected
Description:
When the element is selected, this property is TRUE.
Syntax:
Selected As Boolean
www.nicelabel.com
August 2011
SetVariable
Description:
Connects the element to the variable with ID. If the return value of the function is 1, then
some error occured during the connection. The best example for this is that you want
connect variable with fixed length to an element which requires different fixed lenght.
(EAN13 barcode). In such case element is not connected to any variable it is fixed.
Syntax:
Function SetVariable(ID As Long) As Long
See also:
Variable
Status
Description:
Status of the object.
Possible values are :
Value
Description
OK
Error condition
Phantom
Syntax:
Property Status As Long
Access Rights:
read-only
Top
Description:
Top position of the element (in 0.01 mm units).
Syntax:
Property Top As Long
Access Rights:
www.nicelabel.com
August 2011
read-only
See also:
Hight, AnchorPoint, Left, Width
Variable
Description:
Returns the interface to the variable, which is connected with the database field.
Syntax:
Property Variable As IVar
Access Rights:
read-only
See also:
SetVariable
VertMirror
Description:
In case that VertMirror property has value TRUE picture is mirrored vertically. In the other
case picture remains unmirrored.
Syntax:
VertMirror As Boolean
See also:
HorzMirror
Width
Description:
Width of the element (in 0.01 mm units).
Syntax:
Property Width As Long
Access Rights:
read-only
www.nicelabel.com
August 2011
See also:
Hight, AnchorPoint, Top, Left
ZOrder
Description:
Value of Z order of the object position. When the Zorder value is the highest, the element
is placed on the top of all others.
Syntax:
ZOrder As Long
Version
Availability
Properties
Version
Availability
DatabaseProperties
3,4,5
AspectRatio
3,4,5
DeleteDatabase
3,4,5
CurrUnit
3,4,5
DeleteFunction
3,4,5
Databases
3,4,5
DeleteObject
3,4,5
Functions
3,4,5
DeleteVariable
3,4,5
GlobalVariables
3,4,5
DownloadVariablesList
IsLabelReadOnly
3,4,5
DownloadToPrinter
IsLinkedToStock
3,4,5
ExportToPrinter
FunctionProperties
4,5
IsStoreRecallPrintingAv
ailable
3,4,5
IsStoreRecallSupported
GetDownloadLocations
List
LabelSettings
3,4,5
GetDownloadLocations
ListForPrinter
LastRevisionID
3,4,5
GeneralExport
4,5
Objects
3,4,5
GetCurrentState
4,5
PrinterName
3,4,5
GetDependantFilesList
3,4,5
PrinterPort
3,4,5
GetLabelPreviewEx
3,4,5
PrintType
GetPrinterDarknessList
3,4,5
ResX
3,4,5
GetPrintParamEx
ResY
3,4,5
GetPrintParamList
StockName
3,4,5
GetPrinterSpeedList
3,4,5
StockType
GetPrinterSpeedUnit
3,4,5
SynchronizedPrinting
3,4,5
GetPrintParam
3,4,5
Variables
3,4,5
www.nicelabel.com
August 2011
NewDatabase
3,4,5
NewDatabaseWiz
3,4,5
NewFunction
3,4,5
NewVariable
3,4,5
NewVariableWiz
3,4,5
ObjectProperties
3,4,5
PrintAndGetJobID
SelectDatabase
3,4,5
SelectVariable
3,4,5
SetDirty
4,5
SetPrintJobName
4,5
SetPrintParam
3,4,5
VariableProperties
3,4,5
AspectRatio
Description:
AspectRatio is a Boolean property which returns TRUE if aspect ratio is used otherwise
FALSE is returned.
Syntax:
AspectRatio As Boolean
CurrUnit
Description:
CurrUnit represent the current measurement unit used in the label.
Possible values for are:
Value
Description
Cm
Inch
Dot
Mm
Syntax:
Property CurrUnit As Long
www.nicelabel.com
August 2011
Access Rights:
read-only
DatabaseProperties
Description:
DatabaseProperties method opens a dialog box with properties for the database selected
with ID.
Syntax:
Function DatabaseProperties(ID As Long) As Boolean
See also:
Databases, Deletedatabase, NewDatabase, NewDatabaseWiz, SelectDatabase
Databases
Description:
Returns the interface to the database list.
Syntax:
Property Databases As IDatabaseList
Access Rights:
read-only
See also:
DatabaseProperties, Deletedatabase, NewDatabase, NewDatabaseWiz, SelectDatabase
DeleteDatabase
Description:
DeleteDatabase method deletes a database connection from the label. In case of success
method returns value TRUE.
Syntax:
Function DeleteDatabase(ID As Long) As Boolean
Avaliabilty:
Nicelabel Pro only
See also:
www.nicelabel.com
August 2011
www.nicelabel.com
August 2011
DownloadVariablesList
Description:
This method is set a list of variables whose value must be set if we wish to call any export
or Store to printer. If this is not done Export or Store to printer will fail.
Syntax:
Function DownloadVariablesList() As IVariableList
Avaliabilty:
Nicelabel Pro only
DownloadToPrinter
Description:
This method store label to printer. It is essential that we set all the variables in the list
using DownloadVariablesList method or method will fail.
Syntax:
Function DownloadToPrinter() As Boolean
Avaliabilty:
Nicelabel Pro only
ExportToPrinter
Description:
Use ExportToPrinter function when you want export the label directly to the printer or to a
file. When ExportFile parameter is blank exporting is done directly to the printer otherwise
it is done to the file.
With CreateLVR parameter you are defining whether you want export also the LVR file,
which contains the descriptions of the variables.
The ExportVariant defines how it is exported. This parameter depends on the printer
(Default = 1, other values represent for example: export to RAM, export to Flash, export to
PCMCIA, ...)
Syntax:
Function ExportToPrinter(ExportVariant As Long, ExportFile As
String, CreateLVR As Boolean) As Boolean
Functions
Description:
Returns the interface to the function list.
www.nicelabel.com
August 2011
Syntax:
Property Functions As IFunctionList
Access Rights:
read-only
See also:
DeleteFunctions, FunctionProperties
FunctionProperties
Description:
FunctionProperties method opens a dialog box with properties for the function selected
with ID.
Syntax:
Function FunctionProperties(ID As Long) As Boolean
See also:
DeleteFunctions, Functions
GetDownloadLocationsList
Description:
Returns available slot names for recall printing. Current printer name of the selected label
is used.
Syntax:
Function GetDownloadLocationsList() As String
GetDownloadLocationsListForPrinter
Description:
Returns available slot names for recall printing. PrinterName is used as printer name
Syntax:
Function GetDownloadLocationsListForPrinter(PrinterName As String)
As String
General Export
Description:
Performs export of the current label to the ExportDir folder
Syntax:
Function GeneralExport(ExportDir As String) As Boolean
www.nicelabel.com
August 2011
GetCurrentState
Description:
Use GetCurrentState function when you want to get the state of NiceLabel. Return result
can be of the following:
1 - printing
2 - print preview
0 - other (label design)
This method is especially useful for VBScript actions, where the code can check current
state and do some actions only in certain modes (printing for example)
Syntax:
Function GetCurrentState() As Long
GetDependantFilesList
Description:
GetDependantFilesList function returns you the list of files, which are in use with
opened file.
As ListType you can set , which types of the file you wish to get. Below you can
find all possible ListType parameters:
ListType = 0
All files
ListType = 1
NiceForm files
ListType = 2
ListType = 3
Returned string is a comma delimited string. This means that in one string there
are names of all files in use. Return result is like this:
C:\program files\EuroPlus\formsample1.xff, C:\program files\EuroPlus\formsample2.xff
Syntax:
Function GetDependantFilesList(ListType As Long) As String
www.nicelabel.com
August 2011
GetLabelPreviewEx
Description:
Use this function to generate the preview of the label. With this function it is possible to
create label previews for the header and tail labels also. Also two sided labels are
supported.
The extension of the FileName parameter defines in which format the preview will be
stored. Possible formats are BMP, JPG, PNG and GIF.
Based on the parameters suitable preview is generated.
Syntax:
Function GetLabelPreviewEx(FileName As String, Width As Long,
Height As Long, LabelKind As Long, LabelSide As Long, HasBorder As
Boolean) As Boolean
Explanation of the parameters:
FileName
Represents the file name.
Width
Width of picture in pixels.
Height
Height of picture in pixels.
LabelKind
With this parameter you specify which kind of label you want to
preview. Possible values are 0, 1 and 2. 0 means header label, 1
means normal label and 1 means footer label.
LabelSide
With this parameter you specify which side of label you want to
preview. Possible values are 0 and 1. 0 means front side of the
label and 1 means the back side of the label.
HasBorder
If you specify this parameter the preview will have a border
around the preview.
GetPrinterDarknestList
Description:
This function returns the available darkness for the printer. The name of the printer must
be provided as a parameter.
Syntax:
www.nicelabel.com
August 2011
Syntax:
Function GetPrintParamEx(PrinterName As String, ParamName As
String) As String
See also:
GetPrinterSpeedList, GetPrinterSpeedUnit, GetPrintParam, PrinterName, PrinterPort
GetPrintParamList
Description:
This method returns comma separated list of values/names for specified ParamName and
specified PrinterName and the data you desire
Explanation of the parameters:
PrinterName
Defines for which printer you want to retrieve the parameter,
blank value means that default printer will be taken.
ParamName
www.nicelabel.com
August 2011
It can be one of :
PRINTSPEED speed parameter as string value
PRINTDARKNESS - darkness parameter as string value
PRINTROTATION - rotation parameter as string value
PRINTDARKNESS1, PRINTDARKNESS2, PRINTDARKNESS3, PRINTDARKNESS4,
PRINTDARKNESS5 - darkness on specific print head on the printer
with multiple print heads
FRONT_PAGE_COLOR_LIST - comma separated list of color values represented
in integers(COLORREF)
BACK_PAGE_COLOR_LIST - comma separated list of color values represented
in integers(COLORREF)
DataType
Parameter is used for parameters PRINTSPEED, PRINTDARKNESS,
PRINTDARKNESS1, PRINTDARKNESS2, PRINTDARKNESS3, PRINTDARKNESS4,
PRINTDARKNESS5 and it means whether you want to retrieve values list or
names list for the specified parameter. Values are actual values for the
speed/darkness while names are string representations for those items
(for example you use names when displaying this data to user)
Syntax:
Function GetPrintParamList(PrinterName As String, ParamName As
String, DataType As Long) As String
See also:
GetPrinterSpeedList, GetPrinterSpeedUnit, GetPrintParam, PrinterName, PrinterPort
GetPrinterSpeedList
Description:
This function returns the available speeds for the printer. The name of the printer must be
provided as a parameter.
Syntax:
Function GetPrinterSpeedList(PrinterName As String) As String
See also:
GetPrinterDarknessList, GetPrinterSpeedUnit, GetPrintParam, PrinterName, PrinterPort
GetPrinterSpeedUnit
Description:
This function returns the available speed units for the printer. The name of the printer
must be provided as a parameter.
Syntax:
Function GetPrinterSpeedUnit(PrinterName As String) As String
www.nicelabel.com
August 2011
See also:
GetPrinterDarknessList, GetPrinterSpeedList, GetPrintParam, PrinterName, PrinterPort
GetPrintParam
Description:
GetPrintParam function returns the value for provided printing parameter. Possible values
for Name parameter are:
PRINTSPEED
Function will return the speed parameter as string value.
PRINTDARKNESS
Function will return the darkness parameter as string value.
Syntax:
Function GetPrintParam(Name As String) As String
See also:
GetPrinterDarknessList, GetPrinterSpeedList, Get PrinterSpeedUnit, PrinterName,
PrinterPort
GlobalVariables
Description:
Returns the interface to the variable list for global variables.
Syntax:
Property GlobalVariables As IVariableList
Access Rights:
read-only
IsLabelReadOnly
Description:
IsLabelReadOnly property returns TRUE if label is opened in read only mode, otherwise
return value is FALSE.
Syntax:
Property IsLabelReadOnly As Boolean
Access Rights:
read-only
www.nicelabel.com
August 2011
IsLinkedToStock
Description:
IsLinkedToStock property returns TRUE if label is linked with some stock or FALSE if
none of the stocks are used.
Syntax:
Property IsLinkedToStock As Boolean
Access Rights:
read-only
IsStoreRecallPrintingAvailable
Description:
If store recall printing is avaliable value of the IsStoreRecallPrintingAvaliable property is
TRUE.
Syntax:
Property IsStoreRecallPrintingAvailable As Boolean
Access Rights:
read-only
IsStoreRecallSupported
Description:
If current printer supports store/recall value of the IsStoreRecallSupported property is
TRUE.
Syntax:
Property IsStoreRecallSupported As Boolean
Access Rights:
read-only
LabelSettings
Description:
Returns an interface to IlabelSettings class. See more in the Ilabel Chapter.
Syntax:
www.nicelabel.com
August 2011
LastRevisionID
Description:
Returns the ID of the last revision, which was made to the label.
Syntax:
Property LastRevisionID As Long
Access Rights:
read-only
NewDatabase
Description:
This method creates a new database access on the label.
Syntax:
Function NewDatabase() As Boolean
See also:
DatabaseProperties, DataBases, DeleteDatabases, NewDatabaseWiz, SelectDatabase
NewDatabaseWiz
Description:
NewDatabaseWiz method opens Database Wizard. In case of success method returns
value TRUE.
Syntax:
Function NewDatabaseWiz() As Boolean
See also:
DatabaseProperties, DataBases, DeleteDatabases, NewDatabase, SelectDatabase
NewFunction
Description:
www.nicelabel.com
August 2011
www.nicelabel.com
August 2011
ObjectProperties
Description:
ObjectProperties method opens a dialog box with properties for the object selected with
ID.
Syntax:
Function ObjectProperties(ID As Long) As Boolean
See also:
Objects, DeleteObject
PrintAndGetJobID
Description:
When printing from NiceLabel user can retrieve an exact status of the print job.
Parameter Quantity : Specifies the quantity that should be used when printing
AdditionalParam: Reserved for future use, must be
Return Value : Job ID of the print Job.
In case of error, return value can contain the following strings:
Logging Disabled - Logging is not enabled, retrieving of ID not possible.
Print Failed - Print Job failed to print.
Syntax:
Function PrintAndGetJobID(Quantity As String, AdditionalParams As
String) As String
PrinterName
Description:
PrinterName represents the name of the printer to which label will be printed.
Syntax:
PrinterName As String
See also:
GetPrinterDarknessList, GetPrinterSpeedList, GetPrintParam, PrinterPort, GetPrintParam
PrinterPort
Description:
Command PrinterPort allows you to set different printer port than specified in the label file.
Syntax:
www.nicelabel.com
August 2011
PrinterPort As String
Access Rights:
read-write
See also:
GetPrinterDarknessList, GetPrinterSpeedList, GetPrintParam, PrinterName,
GetPrintParam
PrintType
Description:
Label mode can be obtained by calling PrintType property
O = PRINT_TYPE_NORMAL
1 = PRINT_TYPE_RECALL
Syntax:
PrintType As Long
Access Rights:
read
ResX
Description:
Returns the current printer resolution in horizontal direction. Result is in DPI.
Syntax:
Property ResX As Long
Access Rights:
read-only
See also:
ResY
ResY
Description:
Returns the current printer resolution in vertical direction. Result is in DPI.
www.nicelabel.com
August 2011
Syntax:
Property ResY As Long
Access Rights:
read-only
See also:
ResX
SelectDatabase
Description:
SelectDatabase method selects a database on the label. In case of success method
returns value TRUE.
Syntax:
Function SelectDatabase(ID As Long) As Boolean
See also:
DatabaseProperties, DataBases, DeleteDatabases, NewDatabase, NewDatabaseWiz
SelectVariable
Description:
SelectVariable method selects a variable on the label. In case of success method returns
value TRUE.
Syntax:
Function SelectVariable(ID As Long) As Boolean
SetDirty
Description:
With this method you can set the dirty flag of the label document to true, if you do this
means that the label has been modifed and the user will be prompted to save the label
when he will try to close the label
Syntax:
Function SetDirty(flag As Boolean)
SetPrintJobName
Description:
www.nicelabel.com
August 2011
The INiceLabel interface is extended to support setting the PrintJobName for next print
command. The command is defined as:
Parameter JobName must contain the name of the print job. function returns true if
successful.
The parameter set is used only for the first print command. After that it is reset to use
default print job names. Application should set the print job name each time before
executing print commands.
SetPrintParam
Description:
With SetPrintParam function it is possible to set the following printing parameters:
The name of the printing parameter should be stored in the functions Name parameter
and the value of the parameter in the Value parameter. Both parameters should be
represented as a string. If function is able to set the required printing parameters, the
return value will be TRUE otherwise something was wrong and the return result will be
FALSE.
Syntax:
Function SetPrintParam(Name As String, Value As String) As Boolean
StockName
Description:
Returns the name of the stock, which is used on the label.
Syntax:
Property StockName As String
Access Rights:
www.nicelabel.com
August 2011
read-only
See also:
StockType
StockType
Description:
Returns the type of the stock, which is used on the label.
Syntax:
Property StockType As String
Access Rights:
read-only
See also:
StockName
SynchronizedPrinting
Description:
This property defines wether the synchronized printing should be used or not. If you try to
set this property to true when the current printer does not support this then the property
will be false and error will be set in NiceLabel.
Syntax:
Property SynchronizedPrinting As Boolean
Variables
Description:
Returns the interface to the variable list for input variables.
Syntax:
Property Variables As IVariableList
Access Rights:
read-only
See also:
NewVariable, NewVariableWiz, VariableProperties
www.nicelabel.com
August 2011
UpdateVariableData
Description:
UpdateVariableData method change global variable setup.
Syntax:
VariableProperties
Description:
VariableProperties method opens a dialog box with properties for the variable selected
with ID.
Syntax:
Function VariableProperties(ID As Long) As Boolean
See also:
NewVariable, NewVariableWiz, Variables
Version
Availability
Properties
Version
Availability
Application
3,4,5
DatabaseProperties
3,4,5
CurrUnit
3,4,5
DeleteDatabase
3,4,5
Databases
3,4,5
DeleteFunction
3,4,5
Functions
3,4,5
DeleteObject
3,4,5
GlobalVariables
3,4,5
DeleteVariable
3,4,5
IsLabelReadOnly
3,4,5
DownloadVariablesList
IsLinkedToStock
3,4,5
DownloadToPrinter
IsStoreRecallPrintingAv
ailable
ExecuteMacro
3,4,5
IsStoreRecallSupported
ExportToPocket
3,4,5
LabelFileName
3,4,5
ExportToPrinter
3,4,5
LabelSettings
3,4,5
FunctionProperties
3,4,5
LastRevisionID
3,4,5
Objects
3,4,5
PrinterName
3,4,5
GeneralExportEX
GeneralExport
www.nicelabel.com
5
3,4,5
GetCurrentState
August 2011
4,5
PrinterPort
3,4,5
GetDependantFilesList
3,4,5
PrintType
GetDownloadLocations
List
SavedPrinterName
GetDownloadLocations
ListForPrinter
StockName
3,4,5
3,4,5
StockType
3,4,5
GetLabelPreview
GetLabelPreviewEx
GetPrintParam
4,5
3,4,5
GetPrintParamEx
GetPrintParamList
NewDatabase
3,4,5
NewDatabaseWiz
3,4,5
NewFunction
3,4,5
NewVariable
3,4,5
NewVariableWiz
3,4,5
ObjectProperties
3,4,5
3,4,5
PrintAndGetJobID
Variables
5
3,4,5
Save
3,4,5
SelectDatabase
3,4,5
SelectVariable
3,4,5
SessionEnd
3,4,5
SessionPrint
3,4,5
SessionStart
3,4,5
SetDirty
SynchronizedPrinting
4,5
SetObjectVisible
SetPrintJobName
4,5
SetPrintParam
3,4,5
VariableProperties
3,4,5
Application
Description:
Application method returns an interface to the niceApp.
Syntax:
Property Application As NiceLabel
www.nicelabel.com
August 2011
Access Rights:
read-only
CustomExport
Description:
This method enables label export using custom export definition. Definition has to be
previous defined via Export Print system menu
Syntax:
Function CustomExport(ExportName As String, ExportDir As String)
As Boolean
Explanation of the parameters:
ExportName custom export definition name
ExportDir folder path of the exported file
CurrUnit
Description:
CurrUnit represent the current measurement unit used in the label.
Possible values are:
Value
Description
Cm
Inch
Dot
Mm
Syntax:
Property CurrUnit As Long
Access Rights:
read-only
www.nicelabel.com
August 2011
Databases
Description:
Returns the interface to the database list.
Syntax:
Property Databases As IDatabaseList
Access Rights:
read-only
See also:
DatabaseProperties, DeleteDatabase, NewDatabase, NewDatabaseWiz,
SelectDatabase
DatabaseProperties
Description:
DatabaseProperties method opens a dialog box with properties for the database selected
with ID.
Syntax:
Function DatabaseProperties(ID As Long) As Boolean
See also:
Databases, DeleteDatabase, NewDatabase, NewDatabaseWiz,
SelectDatabase
DeleteDatabase
Description:
DeleteDatabase method deletes a database connection from the label. In case of success
method returns value TRUE.
Syntax:
Function DeleteDatabase(ID As Long) As Boolean
Avaliabilty:
Nicelabel Pro only
See also:
Databases, DatabaseProperties, NewDatabase, NewDatabaseWiz,
SelectDatabase
www.nicelabel.com
August 2011
DeleteFunction
Description:
DeleteFunction method deletes a function from the label. In case of success method
returns value TRUE.
Syntax:
Function DeleteFunction(ID As Long) As Boolean
Avaliabilty:
Nicelabel Pro only
See also:
Functions, FunctionProperties, NewFunction
DeleteObject
Description:
DeleteObject method deletes an object from the label. In case of success method returns
value TRUE.
Syntax:
Function DeleteObject(ID As Long) As Boolean
Avaliabilty:
Nicelabel Pro only
See also:
Objects, ObjectPropeties
DeleteVariable
Description:
DeleteVariable method deletes a variable from the label. In case of success method
returns value TRUE.
Syntax:
Function DeleteVariable(ID As Long) As Boolean
Avaliabilty:
Nicelabel Pro only
See also:
GlobalVariables, NewVariable, SelectVariable, Variables,
VariableProperties, NewVariableWiz
www.nicelabel.com
August 2011
DownloadVariablesList
Description:
This method is set a list of variables whose value must be set if we wish to call any export
or Store to printer. If this is not done
Syntax:
Function DownloadVariablesList() As IVariableList
Avaliabilty:
Nicelabel Pro only
DownloadToPrinter
Description:
This method store label to printer. It is essential that we set all the variables in the list
using DownloadVariablesList method or method will fail.
Syntax:
Function DownloadToPrinter() As Boolean
Avaliabilty:
Nicelabel Pro only
ExecuteMacro
Description:
This function executes a macro. Macro parameter represents NiceCommand.
Syntax:
Function ExecuteMacro(Macro As String) As Boolean
ExportToPocket
Description:
Function executes the same action as choosing the command File|Export|Export to
terminal. All the necessary files are created in directory specified in ExportDir parameter.
Function is not supported in DEMO mode.
Syntax:
Function ExportToPocket(ExportDir As String) As Boolean
www.nicelabel.com
August 2011
See also:
ExportToPrinter
ExportToPrinter
Description:
Use ExportToPrinter function when you want export the label directly to the printer or to a
file. When ExportFile parameter is blank exporting is done directly to the printer otherwise
it is done to the file.
With CreateLVR parameter you are defining whether you want export also the LVR file,
which contains the descriptions of the variables.
The ExportVariant defines how it is exported. This parameter depends on the printer
(Default = 1, other values represent for example: export to RAM, export to Flash, export to
PCMCIA, ...)
Function is not supported in DEMO mode.
Syntax:
Function ExportToPrinter(ExportVariant As Long, ExportFile As
String, CreateLVR As Boolean) As Boolean
See also:
ExportToPocket
Functions
Description:
Returns the interface to the function list.
Syntax:
Property Functions As IFunctionList
Access Rights:
read-only
See also:
DeleteFunction, FunctionProperties, NewFunction
FunctionProperties
Description:
www.nicelabel.com
August 2011
FunctionProperties method opens a dialog box with properties for the function selected
with ID.
Syntax:
Function FunctionProperties(ID As Long) As Boolean
See also:
DeleteFunction, Functions, NewFunction
GetDependantFilesList
Description:
GetDependantFilesList function returns you the list of files, which are in use with
opened file.
As ListType you can set , which types of the file you wish to get. Below you can
find all possible ListType parameters:
ListType = 0
All files
ListType = 1
NiceForm files
ListType = 2
ListType = 3
Returned string is a comma delimited string. This means that in one string there
are names of all files in use. Return result is like this:
C:\program files\EuroPlus\formsample1.xff, C:\program files\EuroPlus\formsample2.xff
Syntax:
Function GetDependantFilesList(FileName As String, Width as Long,
Height as Long) As Boolean
GetDownloadLocationsList
Description:
Returns available slot names for recall printing. Current printer name of the selected label
is used.
www.nicelabel.com
August 2011
Syntax:
Function GetDownloadLocationsList() As String
GetDownloadLocationsListForPrinter
Description:
Returns available slot names for recall printing. PrinterName is used as printer name
Syntax:
Function GetDownloadLocationsListForPrinter(PrinterName As String)
As String
GeneralExport
Description:
Performs export of the current label to the ExportDir folder.
Function is not supported in DEMO mode.
Syntax:
Function GetLabelPreview(ExportDir As String) As Boolean
GeneralExportEx
Description:
GeneralExportEx method is introduced primarily to support exporting of store/recall
streams..
Syntax:
Function GeneralExportEx(ExportDir As String, Parameters As
String) As
Parameters
ExportDir
Export file will be created into this directory.
Parameters
Parameters for store/recall can be specified, if the parameters is empty
the method behaves like normal GeneralExport method.
Available options for Parameters:
- RecallPrinting=YES you get recall stream
NO - you get no recall stream
- StoreLocation=SampleStoreLocation - StoreLocation is a string
representing actual memory location in printer, this should be used
together with the RecallPrint option
- NormalPrinting=YES - when the label is set to recall printing and you
want to get normal print stream
www.nicelabel.com
August 2011
GetCurrentState
Description:
Use GetCurrentState function when you want to get the state of NiceLabel. Return result
can be of the following:
1 - printing
2 - print preview
0 - other (label design)
This method is especially useful for VBScript actions, where the code can check current
state and do some actions only in certain modes (printing for example)
Syntax:
Function GetCurrentState() As Long
GetLabelPreview
Description:
GetLabelPreview method saves a preview of the label in the file specified with the
FileName. Other two parameters are for defining the size of preview. If file is created
sucessfully return value is TRUE.
The extension of the FileName parameter defines in which format the preview will be
stored. Possible formats are BMP, JPG, PNG and GIF.
Syntax:
Function GetLabelPreview(FileName As String, Width As Long, Height
As Long) As Boolean
GetLabelPreviewEx
Description:
www.nicelabel.com
August 2011
Use this function to generate the preview of the label. With this function it is possible to
create label previews for the header and tail labels also. Also two sided labels are
supported.
The extension of the FileName parameter defines in which format the preview will be
stored. Possible formats are BMP, JPG, PNG and GIF.
Based on the parameters suitable preview is generated.
Syntax:
Function GetLabelPreviewEx(FileName As String, Width As Long,
Height As Long, LabelKind As Long, LabelSide As Long, HasBorder As
Boolean) As Boolean
Explanation of the parameters:
FileName
Represents the file name.
Width
Width of picture in pixels.
Height
Height of picture in pixels.
LabelKind
With this parameter you specify which kind of label you want to
preview. Possible values are 0, 1 and 2. 0 means header label, 1
means normal label and 2 means footer label.
LabelSide
With this parameter you specify which side of label you want to
preview. Possible values are 0 and 1. 0 means front side of the
label and 2 means the back side of the label.
HasBorder
If you specify this parameter the preview will have a border
around the preview.
GetPrintParam
Description:
GetPrintParam function returns the value for provided printing parameter. Possible values
for Name parameter are:
SPEED
Function will return the speed parameter as string value.
DARKNESS
Function will return the darkness parameter as string value.
www.nicelabel.com
August 2011
Syntax:
Function GetPrintParam(Name As String) As String
Explanation of the parameters:
Name
Defines which parameter should be retrieved :
PRINTSPEED speed parameter as string value
PRINTDARKNESS - darkness parameter as string value
PRINTROTATION - rotation parameter as string value
PRINTDARKNESS1, PRINTDARKNESS2, PRINTDARKNESS3, PRINTDARKNESS4,
PRINTDARKNESS5 - darkness on specific print head on the printer
with multiple print heads
NUMBER_OF_FRONT_PAGE_COLORS - number of colors for the specified
page side for the printers
with multiple print heads
NUMBER_OF_BACK_PAGE_COLORS - number of colors for the specified
page side for the printers
with multiple print heads
See also:
Print, PrintePort, PrinterName, SetPrintParam
GetPrintParamEX
Description:
This function retrieve the value of printing parameter.
Explanation of the parameters:
PrinterName
Defines for which printer you want to retrieve the parameter,
blank value means that default printer will be taken.
ParamName
Defines which parameter should be retrieved :
PRINTSPEED speed parameter as string value
PRINTDARKNESS - darkness parameter as string value
PRINTROTATION - rotation parameter as string value
PRINTDARKNESS1, PRINTDARKNESS2, PRINTDARKNESS3, PRINTDARKNESS4,
PRINTDARKNESS5 - darkness on specific print head on the printer
with multiple print heads
NUMBER_OF_FRONT_PAGE_COLORS - number of colors for the specified
page side for the printers
with multiple print heads
NUMBER_OF_BACK_PAGE_COLORS - number of colors for the specified
page side for the printers
with multiple print heads
www.nicelabel.com
August 2011
Syntax:
Function GetPrintParamEx(PrinterName As String, ParamName As
String) As String
See also:
GetPrinterSpeedList, GetPrinterSpeedUnit, GetPrintParam, PrinterName, PrinterPort
GetPrintParamList
Description:
This method returns comma separated list of values/names for specified ParamName and
specified PrinterName and the data you desire
Explanation of the parameters:
PrinterName
Defines for which printer you want to retrieve the parameter,
blank value means that default printer will be taken.
ParamName
It can be one of :
PRINTSPEED speed parameter as string value
PRINTDARKNESS - darkness parameter as string value
PRINTROTATION - rotation parameter as string value
PRINTDARKNESS1, PRINTDARKNESS2, PRINTDARKNESS3, PRINTDARKNESS4,
PRINTDARKNESS5 - darkness on specific print head on the printer
with multiple print heads
FRONT_PAGE_COLOR_LIST - comma separated list of color values represented
in integers(COLORREF)
BACK_PAGE_COLOR_LIST - comma separated list of color values represented
in integers(COLORREF)
DataType
Parameter is used for parameters PRINTSPEED, PRINTDARKNESS,
PRINTDARKNESS1, PRINTDARKNESS2, PRINTDARKNESS3, PRINTDARKNESS4,
PRINTDARKNESS5 and it means whether you want to retrieve values list or
names list for the specified parameter. Values are actual values for the
speed/darkness while names are string representations for those items
(for example you use names when displaying this data to user)
Syntax:
Function GetPrintParamList(PrinterName As String, ParamName As
String, DataType As Long) As String
See also:
GetPrinterSpeedList, GetPrinterSpeedUnit, GetPrintParam, PrinterName, PrinterPort
www.nicelabel.com
August 2011
GlobalVariables
Description:
Returns the interface to the variable list for global variables.
Syntax:
Property GlobalVariables As IVariableList
Access Rights:
read-only
See also:
DeleteVariable, NewVariable, SelectVariable, Variables,
VariableProperties, NewVariableWiz
IsLabelReadOnly
Description:
IsLabelReadOnly property returns TRUE if label is opened in read only mode, otherwise
return value is FALSE.
Syntax:
Property IsLabelReadOnly As Boolean
Access Rights:
read-only
IsLinkedToStock
Description:
IsLinkedToStock property returns TRUE if label is linked with some stock or FALSE if
none of the stocks are used.
Syntax:
Property IsLinkedToStock As Boolean
Access Rights:
read-only
IsStoreRecallPrintingAvailable
Description:
If store recall printing is avaliable value of the IsStoreRecallPrintingAvaliable property is
TRUE.
www.nicelabel.com
August 2011
Syntax:
Property IsStoreRecallPrintingAvailable As Boolean
Access Rights:
read-only
IsStoreRecallSupported
Description:
If current printer supports store/recall value of the IsStoreRecallSupported property is
TRUE.
Syntax:
Property IsStoreRecallSupported As Boolean
Access Rights:
read-only
LabelFileName
Description:
LabelFileName represents the name of the label file.
Syntax:
LabelFileName As String
LabelSettings
Description:
Returns an interface to IlabelSettings class. See more in the Ilabel Chapter.
Syntax:
Property LabelSettings As ILabelSettings
Access Rights:
read-only
LastRevisionID
Description:
Returns the ID of the last revision, which was made to the label.
www.nicelabel.com
August 2011
Syntax:
Property LastRevisionID As Long
Access Rights:
read-only
NewDatabase
Description:
This method creates a new database access on the label.
Syntax:
Function NewDatabase() As Boolean
See also:
Databases, DatabaseProperties, DeleteDatabase, NewDatabaseWiz,
SelectDatabase
NewDatabaseWiz
Description:
NewDatabaseWiz method opens Database Wizard. In case of success method returns
value TRUE.
Syntax:
Function NewDatabaseWiz() As Boolean
See also:
Databases, DatabaseProperties, DeleteDatabase, NewDatabase,
SelectDatabase
NewFunction
Description:
This method creates a new function on the label.
Syntax:
Function NewFunction() As Boolean
See also:
DeleteFunction, Functions, FunctionProperties
www.nicelabel.com
August 2011
NewVariable
Description:
This method creates a new variable on the label.
Syntax:
Function NewVariable() As Boolean
See also:
DeleteVariable, GlobalVariables, SelectVariable, Variables,
VariableProperties, NewVariableWiz
NewVariableWiz
Description:
NewVariableWiz method opens Variable Wizard. In case of success method returns value
TRUE.
Syntax:
Function NewVariableWiz() As Boolean
See also:
DeleteVariable, GlobalVariables, SelectVariable, Variables,
VariableProperties, NewVariable
Objects
Description:
Returns the interface to the object list.
Syntax:
Property Objects As IObjectList
Access Rights:
read-only
See also:
DeleteObject, ObjectPropeties
ObjectProperties
Description:
ObjectProperties method opens a dialog box with properties for the object selected with
ID.
www.nicelabel.com
August 2011
Syntax:
Function ObjectProperties(ID As Long) As Boolean
See also:
DeleteObject, Objects
PrintAndGetJobID
Description:
When printing from NiceLabel user can retrieve an exact status of the print job.
Parameter Quantity : Specifies the quantity that should be used when printing
AdditionalParam: Reserved for future use, must be
Return Value : Job ID of the print Job.
In case of error, return value can contain the following strings:
Logging Disabled - Logging is not enabled, retrieving of ID not possible.
Print Failed - Print Job failed to print.
Syntax:
Function PrintAndGetJobID(Quantity As String, AdditionalParams As String) As String
Print
Description:
Print method prints as many labels as selected in Quantity.
The quantity parameter is the print quantity of the labels; it can be a number, or one of
following words:
VARIABLE
UNLIMITED
The first parameter means printing on the base of the variable quantity (one of the
variables sets the quantity), the second one means unlimited printing (printing from the
whole database file for example).
Labels are printed to the printer which is selected in PrinterName property.
If PrintType is:
- Simulate (value = "Simulate") : the whole printing process will be just simulated. All
variable values, functions and database access will be performed, but no actual
printing will be done. This parameter can be used to perform a printing validation
(validation of the data) prior to real printing.
- NormalPrinting (value = " NormalPrinting ") : normal printing is selected.
- RecallPrinting (value = " RecallPrinting ") : recall printing is selected.
If Location is:
- Stopupdate (value = " Stopupdate ") : he contens of the objects stay unchanged
after the print or preview so that the real properties of the object can be retrieved
www.nicelabel.com
August 2011
PrintType
Description:
www.nicelabel.com
August 2011
Save
Description:
Save method saves the selected label. Please note that Save command is not supported
in NiceLabel Engine edition of NiceLabel.
Syntax:
Function Save() As Boolean
SavedPrinterName
Description:
Returns the printer name that was used when the label was saved, It remains unchanged
until next load of the label. If the printer for label is changed and the label is saved,
SavedPrinterName property will hold the new printer name after the next load.
Syntax:
Property SavedPrinterName As String
Access Rights:
read-only
SelectDatabase
Description:
SelectDatabase method selects a variable on the label. In case of success method
returns value TRUE.
Syntax:
Function SelectDatabase(ID As Long) As Boolean
www.nicelabel.com
August 2011
See also:
Databases, DatabaseProperties, DeleteDatabase, NewDatabase,
NewDatabaseWiz
SelectVariable
Description:
SelectVariable method selects a variable on the label. In case of success method returns
value TRUE.
Syntax:
Function SelectVariable(ID As Long) As Boolean
See also:
DeleteVariable, GlobalVariables, NewVariableWiz, Variables,
VariableProperties, NewVariable
SessionEnd
Description:
The function closes data stream.
Syntax:
Function SessionEnd() As Boolean
See also:
SessionStart
SessionPrint
SessionPrint
Description:
You send the data stream to printer using this function. You can use multiple SessionPrint
commands one after another and join them in single data stream. The stream is not
closed until the command SessionEnd occurs.
Syntax:
Function SessionPrint(Quantity As String) As Boolean
See also:
SessionStart
SessionEnd
www.nicelabel.com
August 2011
SessionStart
Description:
All three functions (SessionStart, SessionPrint, SessionEnd) are used together. If ordinary
command SessionPrint is used, every time a complete data stream for printer is sent. If
you want to join multiple Print commands into one data stream, you can use the command
SessionStart followed with any number of SessionPrint and in the end use the command
SessionEnd. The stream is not closed until the command SessionEnd occurs. These
commands offer a way of optimal printing through NiceCommands and it is not necessary
to generate a complete data stream for each print session.
Syntax:
Function SessionStart() As Boolean
See also:
SessionPrint
SessionEnd
SetPrintJobName
Description:
The INiceLabel interface is extended to support setting the PrintJobName for next print
command. The command is defined as:
Parameter JobName must contain the name of the print job. function returns true if
successful.
The parameter set is used only for the first print command. After that it is reset to use
default print job names. Application should set the print job name each time before
executing print commands.
Syntax:
SetPrintJobName(JobName As String)
SetPrintParam
Description:
With SetPrintParam function it is possible to set the following printing parameters:
www.nicelabel.com
August 2011
The name of the printing parameter should be stored in the functions Name parameter
and the value of the parameter in the Value parameter. Both parameters should be
represented as a string. If function is able to set the required printing parameters, the
return value will be TRUE otherwise something was wrong and the return result will be
FALSE.
Syntax:
Function SetPrintParam(Name As String, Value As String) As Boolean
See also:
GetPrintParam, Print, PrinterPort, PrinterName
SetDirty
Description:
With this method you can set the dirty flag of the label document to true, if you do this
means that the label has been modifed and the user will be prompted to save the label
when he will try to close the label
Syntax:
Function SetDirty(flag As Boolean)
SetObjectVisible
Description:
With this method you can set object visibility on the label.
When the method succeeds, the return value is true. If it fails, the return value is false. The reasons
for failing can be:
- Object with specified name is not found (Error 1610).
- Object is in error state. If object is found on the label, but it is in error state (not OK or Phantom),
the visible property can not be changed (Error 1611)
Syntax:
Function SetObjectVisible(ObjectName As String, Visible As
Boolean) As Boolean
Parameters:
Objectname
Name of the object, for which the visible property should be changed
Visible
Visible status after the call. If parameter is false, the object will get status Phantom
www.nicelabel.com
August 2011
StockName
Description:
Returns the name of the stock, which is used on the label.
Syntax:
Property StockName As String
Access Rights:
read-only
See also:
StockType
StockType
Description:
Returns the type of the stock, which is used on the label.
Syntax:
Property StockType As String
Access Rights:
read-only
See also:
StockName
SynchronizedPrinting
Description:
This property defines wether the synchronized printing should be used or not. If you try to
set this property to true when the current printer does not support this then the property
will be false and error will be set in NiceLabel.
Syntax:
Property SynchronizedPrinting As Boolean
Variables
Description:
Returns the interface to the variable list for input variables.
www.nicelabel.com
August 2011
Syntax:
Property Variables As IVariableList
Access Rights:
read-only
See also:
DeleteVariable, GlobalVariables, NewVariableWiz, SelectVariable,
VariableProperties, NewVariable
VariableProperties
Description:
VariableProperties method opens a dialog box with properties for the variable selected
with ID.
Syntax:
Function VariableProperties(ID As Long) As Boolean
See also:
DeleteVariable, GlobalVariables, NewVariableWiz, SelectVariable,
Variables, NewVariable
Version
Availability
Properties
Version
Availability
Move
3,4,5
AnchorElementID
3,4,5
Resize
3,4,5
AnchorLevel
3,4,5
SetVariable
3,4,5
AnchorPoint
3,4,5
FormatID
3,4,5
Height
3,4,5
ID
3,4,5
IsLocked
3,4,5
Kind
3,4,5
Left
3,4,5
Name
3,4,5
PageNumber
3,4,5
ResizeFlag
3,4,5
RotateFlag
3,4,5
www.nicelabel.com
August 2011
Rotation
3,4,5
Selected
3,4,5
Status
3,4,5
Top
3,4,5
Variable
3,4,5
Width
3,4,5
ZOrder
3,4,5
AnchorElementID
Description:
Currently not used. Intended to be used, when position of one element can be dependant
on position/size of another element.
Syntax:
AnchorElementID As Long
AnchorLevel
Description:
Currently not used.
Syntax:
AnchorLevel As Long
AnchorPoint
Description:
Identifies the point of the object, which is fixed on the label. If the object size is changed,
the specified AnchorPoint remains on the same position.
Possible values are:
Value
www.nicelabel.com
Description
top left
top center
top right
mid left
mid center
mid right
August 2011
bottom left
bottom center
bottom right
Syntax:
AnchorPoint As Long
See also:
Height, Left, Top, Width
FormatID
Description:
This is the ID of a contents format, which specifies the character set, which is allowed to
be used for the element.
The following IDs are valid:
Values
Description
All
Numeric
Alphanumeric
Letters
7 bit
Hex
Date
Time
Details about the characters in each format can be found in formats.def file, located on
BIN\SYSTEM directory.
Syntax:
FormatID As Long
Height
Description:
Height of the element (in 0.01 mm units).
Syntax:
Property Height As Long
www.nicelabel.com
August 2011
Access Rights:
read-only
See also:
AnchorPoint, Left, Top, Width
ID
Description:
ID of the element
Syntax:
Property ID As Long
IsLocked
Description:
When the elements position is locked on the label, this property has the value TRUE
Syntax:
IsLocked As Boolean
Kind
Description:
Element kind.
Possible values are:
Value
Description
301
TextObject
302
RectangleObject
303
BitmapObject
304
BarcodeObject
305
LineObject
306
InverseObject
307
OleObject
308
309
ParagraphObject
312
RTFTextObject
www.nicelabel.com
313
August 2011
EllipseObject
Syntax:
Property Kind As Long
Access Rights:
read-only
Left
Description:
Left position of the element (in 0.01 mm units).
Syntax:
Property Left As Long
Access Rights:
read-only
See also:
AnchorPoint, Height, Top, Width
Move
Description:
Move the element to the location X, Y
Syntax:
Move(X As Long, Y As Long)
Name
Description:
Name property represents the name of the object.
Syntax:
Name As String
PageNumber
Description:
www.nicelabel.com
August 2011
The Page index, where the element is located. When Duplex print is used, this index can
have the value 0 (first page) or 1 (second page). When duplex printing is not enabled, this
property is ignored (the value should always be 0).
Syntax:
PageNumber As Long
Access Rights:
read-only
Resize
Description:
Resize the element to the size Width, Height. The element is resized to the closest size in
case, that all sizes are not possible.
Syntax:
Resize(Width As Long, Height As Long)
See also:
ResizeFlag
SetVariable
Description:
Connects the element to the variable with ID. If the return value of the function is 1, then
some error occured during the connection. The best example for this is that you want
connect variable with fixed length to an element which requires different fixed lenght.
(EAN13 barcode). In such case element is not connected to any variable it is fixed.
Syntax:
Function SetVariable(ID As Long) As Long
ResizeFlag
Description:
Flag, which defines, how the object can be resized.
Possible values are:
Value
Description
no resizing
0x88
0x22
www.nicelabel.com
0x55
August 2011
Syntax:
Property ResizeFlag As Long
Access Rights:
read-only
See also:
Resize
RotateFlag
Description:
Flag, which defines, how the object can be rotated.
Possible values are:
Value
Description
no rotation
0x07
90 degrees rotation
0x02
0xFF
Syntax:
Property RotateFlag As Long
Access Rights:
read-only
See also:
Rotation
Rotation
Description:
Specifies the elements rotation. When the element can be rotated only in steps of 90
degrees.
The valid values for the Rotation property are:
www.nicelabel.com
Value
August 2011
Description
0 deg.
90 deg.
180 deg.
270 deg.
When the element can be rotated in steps of 1 degree, the property has the value from 0
to 359.
Syntax:
Rotation As Long
See also:
RotateFlag
Selected
Description:
When the element is selected, this property is TRUE.
Syntax:
Selected As Boolean
SetVariable
Description:
With this method you can set an object to be fixed or assign it a variable, if ID is -1 then
the object will be set to be fixed, if the ID is the ID of the variable on this label then the
object will use this variable as a data source. If the variable will be successufly set to this
object then the return value will be 0 if not then return value will be -1
Syntax:
Function SetVariable(ID As Long) As Long
Status
Description:
Status of the object.
Possible values are:
Value
www.nicelabel.com
Description
August 2011
OK
Syntax:
Property Status As Long
Top
Description:
Top position of the element (in 0.01 mm units).
Syntax:
Property Top As Long
Access Rights:
read-only
See also:
AnchorPoint, Height, Left, Width
Variable
Description:
Returns the interface to the variable, which is connected to the OLE object.
Syntax:
Property Variable As IVar
Access Rights:
read-only
Width
Description:
Width of the element (in 0.01 mm units).
Syntax:
Property Width As Long
Access Rights:
www.nicelabel.com
August 2011
read-only
See also:
AnchorPoint, Height, Left, Top
ZOrder
Description:
Value of Z order of the object position. When the Zorder value is the highest, the element
is placed on the top of all others.
Syntax:
ZOrder As Long
Version
Availability
Item
3,4,5
Properties
Version
Availability
Count
3,4,5
Count
Description:
Count property returns the number of objects, which are defined on the label.
Syntax:
Property Count As Long
Access Rights:
read-only
Item
Description:
Returns the interface to the object. Object is selected with Index.
Syntax:
Function Item(Index As Long) As IObject
www.nicelabel.com
Version
Availability
Properties
Version
Availability
August 2011
Move
3,4,5
AnchorElementID
3,4,5
Resize
3,4,5
AnchorLevel
3,4,5
SetVariable
3,4,5
AnchorPoint
3,4,5
FormatID
3,4,5
Height
3,4,5
ID
3,4,5
IsLocked
3,4,5
Kind
3,4,5
Left
3,4,5
Name
3,4,5
PageNumber
3,4,5
ResizeFlag
3,4,5
RotateFlag
3,4,5
Rotation
3,4,5
Selected
3,4,5
Status
3,4,5
Top
3,4,5
Variable
3,4,5
Width
3,4,5
ZOrder
3,4,5
AnchorElementID
Description:
Currently not used. Intended to be used, when position of one element can be dependant
on position/size of another element.
Syntax:
AnchorElementID As Long
AnchorLevel
Description:
Currently not used.
Syntax:
AnchorLevel As Long
www.nicelabel.com
August 2011
AnchorPoint
Description:
Identifies the point of the object, which is fixed on the label. If the object size is changed,
the specified AnchorPoint remains on the same position.
Possible values:
Value
Description
top left
top center
top right
mid left
mid center
mid right
bottom left
bottom center
bottom right
Syntax:
AnchorPoint As Long
See also:
Height, Left, Top, Width
FormatID
Description:
This is the ID of a contents format, which specifies the character set, which is allowed to
be used for the element.
The following IDs are valid:
Value
www.nicelabel.com
Description
All
Numeric
Alphanumeric
Letters
7 bit
Hex
Date
August 2011
Time
Details about the characters in each format can be found in formats.def file, located on
BIN\SYSTEM directory.
Syntax:
FormatID As Long
Height
Description:
Height of the element (in 0.01 mm units).
Syntax:
Property Height As Long
Access Rights:
read-only
See also:
AnchorPoint, Left, Top, Width
ID
Description:
ID of the element
Syntax:
Property ID As Long
Access Rights:
read-only
IsLocked
Description:
When the elements position is locked on the label, this property has the value TRUE
Syntax:
IsLocked As Boolean
www.nicelabel.com
August 2011
Kind
Element kind.
Possible values are:
Value
Description
301
TextObject
302
RectangleObject
303
BitmapObject
304
BarcodeObject
305
LineObject
306
InverseObject
307
OleObject
308
309
ParagraphObject
312
RTFTextObject
313
EllipseObject
Syntax:
Property Kind As Long
Access Rights:
read-only
Left
Description:
Left position of the element (in 0.01 mm units).
Syntax:
Property Left As Long
Access Rights:
read-only
See also:
AnchorPoint, Height, Top, Width
Name
Description:
www.nicelabel.com
August 2011
ResizeFlag
Description:
Flag, which defines, how the object can be resized.
Possible values are:
www.nicelabel.com
August 2011
Value
Description
0
no resizing
0x88
0x22
0x55
Syntax:
Property ResizeFlag As Long
Access Rights:
read-only
See also:
Resize
RotateFlag
Description:
Flag, which defines, how the object can be rotated.
Possible values are:
Value
Description
no rotation
0x07
90 degrees rotation
0x02
0xFF
Syntax:
Property RotateFlag As Long
Access Rights:
read-only
See also:
Rotation
Rotation
Description:
www.nicelabel.com
August 2011
Specifies the elements rotation. When the element can be rotated only in steps of 90
degrees.
The valid values for the property are:
Value
Description
0 deg.
90 deg.
180 deg.
270 deg.
When the element can be rotated in steps of 1 degree, the property has the value from 0
to 359.
Syntax:
Rotation As Long
See also:
RotateFlag
Selected
Description:
When the element is selected, this property is TRUE.
Syntax:
Selected As Boolean
SetVariable
Description:
Connects the element to the variable with ID. If the return value of the function is 1, then
some error occured during the connection. The best example for this is that you want
connect variable with fixed length to an element which requires different fixed lenght.
(EAN13 barcode). In such case element is not connected to any variable it is fixed.
Syntax:
Function SetVariable(ID As Long) As Long
www.nicelabel.com
August 2011
Status
Description:
Status of the object.
Possible values are :
Value
Description
OK
Error condition
Phantom
Syntax:
Property Status As Long
Access Rights:
read-only
Top
Description:
Top position of the element (in 0.01 mm units).
Syntax:
Property Top As Long
Access Rights:
read-only
See also:
AnchorPoint, Height, Left, Width
Variable
Description:
Returns the interface to the variable, which is connected to the OLE object.
Syntax:
Property Variable As IVar
Access Rights:
www.nicelabel.com
August 2011
read-only
Width
Description:
Width of the element (in 0.01 mm units).
Syntax:
Property Width As Long
Access Rights:
read-only
See also:
AnchorPoint, Height, Left, Top
ZOrder
Description:
Value of Z order of the object position. When the Zorder value is the highest, the element
is placed on the top of all others.
Syntax:
ZOrder As Long
Version
Availability
Properties
Version
Availability
Move
3,4,5
AnchorElementID
3,4,5
Resize
3,4,5
AnchorLevel
3,4,5
SetContents
3,4,5
AnchorPoint
3,4,5
SetVariable
3,4,5
BestFit
3,4,5
Color
3,4,5
Contents
3,4,5
ContentsMask
3,4,5
FontName
3,4,5
FormatID
3,4,5
Height
3,4,5
ID
3,4,5
IsBold
3,4,5
www.nicelabel.com
August 2011
IsInverse
3,4,5
IsItalic
3,4,5
IsLocked
3,4,5
IsMirror
3,4,5
IsStacked
3,4,5
IsStrikeOut
3,4,5
IsUnderlined
3,4,5
Justification
4,5
Kind
3,4,5
Left
3,4,5
MaskCharacter
4,5
MaxSizeX
3,4,5
MaxSizeY
3,4,5
MinSizeX
3,4,5
MinSizeY
3,4,5
NumberOfLines
Name
3,4,5
PageNumber
3,4,5
PtSizeX
3,4,5
PtSizeY
3,4,5
ResizeFlag
3,4,5
RotateFlag
3,4,5
Rotation
3,4,5
Selected
3,4,5
SpacingX
3,4,5
SpacingY
3,4,5
Status
3,4,5
Top
3,4,5
Variable
3,4,5
Width
3,4,5
ZOrder
3,4,5
AnchorElementID
Description:
Currently not used. Intended to be used, when position of one element can be dependant
on position/size of another element.
www.nicelabel.com
August 2011
Syntax:
AnchorElementID As Long
AnchorLevel
Description:
Currently not used.
Syntax:
AnchorLevel As Long
AnchorPoint
Description:
Identifies the point of the object, which is fixed on the label. If the object size is changed,
the specified AnchorPoint remains on the same position.
Possible values:
Value
Description
top left
top center
top right
mid left
mid center
mid right
bottom left
bottom center
bottom right
Syntax:
AnchorPoint As Long
See also:
Height, Left, Top, Width
BestFit
Description:
This property is TRUE if BestFit option for font resizing is enabled.
www.nicelabel.com
August 2011
Syntax:
BestFit As Boolean
See also:
MaxSizeX, MaxSizeY, MinSizeX, MinSizeY, SpacingX, SpacingY
Color
Description:
With 32-bit value you can specify any RGB color. The color value has the following
hexadecimal form:
0x00bbggrr
The low-order byte (rr) contains a value for the relative intensity of red; the second byte
(gg) contains a value for green; and the third byte (bb) contains a value for blue. The
fourth byte byte must be zero.
Each color parameter can range from 0x0 to 0xFF.
Syntax:
Color As Long
See also:
Fontname, IsBold, IsInverse, IsItalic, PtSizeX, PtSizeY
Contents
Description:
Returns the current contents of the element.
Syntax:
Property Contents As String
Access Rights:
read-only
ContentsMask
Description:
www.nicelabel.com
August 2011
ContentsMask As String
FontName
Description:
FontName property represents the name of the font used within paragraph.
Syntax:
FontName As String
See also:
Color, IsBold, IsInverse, IsItalic, PtSizeX, PtSizeY
FormatID
Description:
This is the ID of a contents format, which specifies the character set, which is allowed to
be used for the element.
The following IDs are valid:
Value
Description
All
Numeric
Alphanumeric
Letters
7 bit
Hex
Date
Time
Details about the characters in each format can be found in formats.def file, located on
BIN\SYSTEM directory.
Syntax:
FormatID As Long
Height
Description:
Height of the element (in 0.01 mm units).
www.nicelabel.com
August 2011
Syntax:
Property Height As Long
Access Rights:
read-only
See also:
AnchorPoint, Left, Top, Width
ID
Description:
ID of the element
Syntax:
Property ID As Long
Access Rights:
read-only
IsBold
Description:
When the font for the Paragraph element has enabled Bold property then this property is
TRUE.
Syntax:
IsBold As Boolean
See also:
Color, Fontname, IsInverse, IsItalic, PtSizeX, PtSizeY
IsInverse
Description:
This property is TRUE if Inverse efect is enabled.
Syntax:
IsInverse As Boolean
See also:
Color, Fontname, IsBold, IsItalic, PtSizeX, PtSizeY
www.nicelabel.com
August 2011
IsItalic
Description:
When the font for the Paragraph element has enabled Italic property then this property is
TRUE.
Syntax:
IsItalic As Boolean
See also:
Color, Fontname, IsBold, IsInverse, PtSizeX, PtSizeY
IsMirror
Description:
This property is TRUE if Mirror efect is enabled.
Syntax:
IsMirror As Boolean
IsStacked
Description:
The property defines if the text is normal or stacked
Syntax:
IsStacked As Boolean
IsStrikeOut
Description:
The property defines if the text is striked out
Syntax:
IsStrikeOut As Boolean
IsUnderLined
Description:
The property defines if the text is underlined
Syntax:
IsUnderlined As Boolean
www.nicelabel.com
August 2011
IsLocked
Description:
When the elements position is locked on the label, this property has the value TRUE
Syntax:
IsLocked As Boolean
Justification
Description:
Justification proprety represents how the contents of the text object will be justified.
Possible values are:
Value
Description
None
Left
Center
Right
Full
Syntax:
Justification As Long
Kind
Element kind.
Possible values are:
Value
Description
301
TextObject
302
RectangleObject
303
BitmapObject
304
BarcodeObject
305
LineObject
306
InverseObject
www.nicelabel.com
August 2011
307
OleObject
308
309
ParagraphObject
312
RTFTextObject
313
EllipseObject
Syntax:
Property Kind As Long
Access Rights:
read-only
Left
Description:
Left position of the element (in 0.01 mm units).
Syntax:
Property Left As Long
Access Rights:
read-only
See also:
AnchorPoint, Height, Top, Width
MaskCharacter
This property defines the mask character for the contents mask of the text object
Syntax:
MaskCharacter as String
MaxSizeX
MaxSizeX property represents the maximim size of the font size in horizontal direction
which is allowed when BestFit is enabled.
Syntax:
MaxSizeX As Long
See also:
BestFit, MaxSizeY, MinSizeX, MinSizeY, SpacingX, SpacingY
www.nicelabel.com
August 2011
MaxSizeY
MaxSizeY property represents the maximim size of the font size in vertical direction which
is allowed when BestFit is enabled.
Syntax:
MaxSizeY As Long
See also:
BestFit, MaxSizeX, MinSizeX, MinSizeY, SpacingX, SpacingY
MinSizeX
Description:
MinSizeX property represents the minimum size of the font size in horizontal direction
which is allowed when BestFit is enabled.
Syntax:
MinSizeX As Long
See also:
BestFit, MaxSizeX, MaxSizeY, MinSizeY, SpacingX, SpacingY
MinSizeY
Description
MinSizeY property represents the minimum size of the font size in vertical direction which
is allowed when BestFit is enabled.
Syntax:
MinSizeY As Long
See also:
BestFit, MaxSizeX, MaxSizeY, MinSizeX, SpacingX, SpacingY
Move
Description:
Move the element to the location X, Y
Syntax:
Move(X As Long, Y As Long)
www.nicelabel.com
August 2011
NumberOfLines
Description:
This property returns the number of lines in text object for the current contents.
Syntax:
NumberOfLines As Long
Access Rights:
read-only
Name
Description:
Name property represents the name of the paragraph..
Syntax:
Name As String
PaheNumber
Description:
The Page index, where the element is located. When Duplex print is used, this index can
have the value 0 (first page) or 1 (second page). When duplex printing is not enabled, this
property is ignored (the value should always be 0).
Syntax:
PageNumber As Long
PtSizeX
Description:
PtSizeX represents font size in horizontal direction. Default size is 0. In this case default
size for selected font is set.
Syntax:
PtSizeX As Long
See also:
Color, Fontname, IsBold, IsItalic, IsInverse, PtSizeY
www.nicelabel.com
August 2011
PtSizeY
Description:
PtSizeY represents vertical font size.
Syntax:
PtSizeY As Long
See also:
Color, Fontname, IsBold, IsItalic, IsInverse, PtSizeX
Resize
Description:
Resize the element to the size Width, Height. The element is resized to the closest size in
case, that all sizes are not possible.
Syntax:
Resize(Width As Long, Height As Long)
See also:
ResizeFlag
ResizeFlag
Description:
Flag, which defines, how the object can be resized.
Possible values are:
Value
Description
no resizing
0x88
0x22
0x55
Syntax:
Property ResizeFlag As Long
Access Rights:
read-only
www.nicelabel.com
August 2011
See also:
Resize
RotateFlag
Description:
Flag, which defines, how the object can be rotated.
Possible values are:
Value
Description
no rotation
0x07
90 degrees rotation
0x02
0xFF
Syntax:
Property RotateFlag As Long
Access Rights:
read-only
See also:
Rotation
Rotation
Description:
Specifies the elements rotation. When the element can be rotated only in steps of 90
degrees.
The valid values for the property are:
Value
Description
0 deg.
90 deg.
180 deg.
270 deg.
When the element can be rotated in steps of 1 degree, the property has the value from 0
to 359.
www.nicelabel.com
August 2011
Syntax:
Rotation As Long
See also:
RotateFlag
Selected
Description:
When the element is selected, this property is TRUE.
Syntax:
Selected As Boolean
SetContents
Description:
When the contents of an element should be changed, SetContents method should be
called. In case of success (the Value is valid for the element), the function returns 0. In
case of an error, the function returns 1.
Syntax:
Function SetContents(Value As String) As Long
SetVariable
Description:
Connects the element to the variable with ID. If the return value of the function is 1, then
some error occured during the connection. The best example for this is that you want
connect variable with fixed length to an element which requires different fixed lenght.
(EAN13 barcode). In such case element is not connected to any variable it is fixed.
Syntax:
Function SetVariable(ID As Long) As Long
SpacingX
Description:
With SpacingX property you select spacing between each character.
Syntax:
www.nicelabel.com
August 2011
SpacingX As Long
See also:
BestFit, MaxSizeX, MaxSizeY, MinSizeX, MinSizeY, SpacingY
SpacingY
Description:
With SpacingY property you select spacing between each line.
Syntax:
SpacingY As Long
See also:
BestFit, MaxSizeX, MaxSizeY, MinSizeX, MinSizeY, SpacingX
Status
Description:
Status of the object.
Possible values are:
Value
Description
OK
Error condition
Phantom
Syntax:
Property Status As Long
Access Rights:
read-only
Top
Description:
Top position of the element (in 0.01 mm units).
Syntax:
Property Top As Long
www.nicelabel.com
August 2011
Access Rights:
read-only
See also:
AnchorPoint, Height, Left, Width
Variable
Description:
Returns the interface to the variable, which is connected to the paragraph.
Syntax:
Property Variable As IVar
Access Rights:
read-only
Width
Description:
Width of the element (in 0.01 mm units).
Syntax:
Property Width As Long
Access Rights:
read-only
See also:
AnchorPoint, Height, Left, Top
ZOrder
Description:
Value of Z order of the object position. When the Zorder value is the highest, the element
is placed on the top of all others.
Syntax:
ZOrder As Long
PageNumber
www.nicelabel.com
August 2011
Version
Availability
Create
3,4
Item
3,4
Properties
Count
Version
Availability
3,4
Item
Description:
Returns the interface to the parameter. Function is selected with Index.
Syntax:
Function Item(Index As Long) As IDBParameter
Count
Description:
Count property returns the number of parameters (filters) defined for a database.
Syntax:
Property Count As Long
Access Rights:
read-only
Create
Description:
Create method creates a new filter on the existing database access. Input parameter is a
name of the field on which filtering will be executed. Outputi is an interface to the new
created filter.
Syntax:
Function Create(Field As String) As IDBParameter
Version
Availability
Properties
Version
Availability
Move
3,4,5
AnchorElementID
3,4,5
Resize
3,4,5
AnchorLevel
3,4,5
www.nicelabel.com
SetVariable
August 2011
3,4,5
AnchorPoint
3,4,5
Color
4,5
FillColor
4,5
FillStyle
3,4,5
FormatID
3,4,5
Height
3,4,5
ID
3,4,5
IsLocked
3,4,5
IsRounded
3,4,5
Kind
3,4,5
Left
3,4,5
LineStyle
3,4,5
Name
3,4,5
PageNumber
3,4,5
PrintAsGraphics
3,4,5
Radius
3,4,5
ResizeFlag
3,4,5
RotateFlag
3,4,5
Rotation
3,4,5
Selected
3,4,5
Status
3,4,5
ThicknessX
3,4,5
ThicknessY
3,4,5
Top
3,4,5
Variable
3,4,5
Width
3,4,5
ZOrder
3,4,5
AnchorElementID
Description:
Currently not used. Intended to be used, when position of one element can be dependant
on position/size of another element.
Syntax:
AnchorElementID As Long
www.nicelabel.com
August 2011
AnchorLevel
Description:
Currently not used.
Syntax:
AnchorLevel As Long
AnchorPoint
Description:
Identifies the point of the object, which is fixed on the label. If the object size is changed,
the specified AnchorPoint remains on the same position.
Possible values:
Value
Description
top left
top center
top right
mid left
mid center
mid right
bottom left
bottom center
bottom right
Syntax:
AnchorPoint As Long
See also:
Height, Left, Top, Width
Color
Description:
With 32-bit value you can specify any RGB color. The color value has the following
hexadecimal form:
0x00bbggrr
www.nicelabel.com
August 2011
The low-order byte (rr) contains a value for the relative intensity of red; the second byte
(gg) contains a value for green; and the third byte (bb) contains a value for blue. The
fourth byte byte must be zero.
Each color parameter can range from 0x0 to 0xFF.
Syntax:
Color As Long
See also:
FillColor, FillStyle, LineStyle, ThicknessX, ThicknessY
FillColor
Description:
With 32-bit value you can specify any RGB color. The color value has the following
hexadecimal form:
0x00bbggrr
The low-order byte (rr) contains a value for the relative intensity of red; the second byte
(gg) contains a value for green; and the third byte (bb) contains a value for blue. The
fourth byte byte must be zero.
Each color parameter can range from 0x0 to 0xFF.
Syntax:
FillColor As Long
See also:
Color, FillStyle, LineStyle, ThicknessX, ThicknessY
FillStyle
Description:
FillStyle property represents the fill sytle for the rectangle.
Possible values are:
Value
Description
None
Clear
Solid
Right diagonal
Left diagonal
www.nicelabel.com
August 2011
Vertical
16
Horizontal
32
Cross
64
Cross diagonal
128
25 % of color
256
50 % of color
512
75 % of color
Syntax:
FillStyle As Long
See also:
Color, FillColor, LineStyle, ThicknessX, ThicknessY
FormatID
Description:
This is the ID of a contents format, which specifies the character set, which is allowed to
be used for the element.
The following IDs are valid:
Value
Description
All
Numeric
Alphanumeric
Letters
7 bit
Hex
Date
Time
Details about the characters in each format can be found in formats.def file, located on
BIN\SYSTEM directory.
Syntax:
FormatID As Long
www.nicelabel.com
August 2011
Height
Description:
Height of the element (in 0.01 mm units).
Syntax:
Property Height As Long
Access Rights:
read-only
See also:
AnchorPoint, Left, Top, Width
ID
Description:
ID of the element
Syntax:
Property ID As Long
Access Rights:
read-only
IsLocked
Description:
When the elements position is locked on the label, this property has the value TRUE
Syntax:
IsLocked As Boolean
IsRounded
Description:
When this property is set to TRUE, the rectangle be rounded with radius specified in
Radius property.
Syntax:
IsRounded As Boolean
www.nicelabel.com
August 2011
Kind
Possible values are:
Value
Description
301
TextObject
302
RectangleObject
303
BitmapObject
304
BarcodeObject
305
LineObject
306
InverseObject
307
OleObject
308
309
ParagraphObject
312
RTFTextObject
313
EllipseObject
Syntax:
Property Kind As Long
Access Rights:
read-only
Left
Description:
Left position of the element (in 0.01 mm units).
Syntax:
Property Left As Long
Access Rights:
read-only
See also:
AnchorPoint, Height, Top, Width
LineStyle
Description:
LineStyle property represents the line sytle for the rectangle.
www.nicelabel.com
August 2011
Description
None
Solid
Dash
Dot
Dash + Dot
16
32
Clear
Syntax:
LineStyle As Long
See also:
Color, FillColor, FillStyle, ThicknessX, ThicknessY
Move
Description:
Move the element to the location X, Y
Syntax:
Move(X As Long, Y As Long)
Name
Description:
Name property represents the name of the rectangle.
Syntax:
Name As String
PageNumber
Description:
The Page index, where the element is located. When Duplex print is used, this index can
have the value 0 (first page) or 1 (second page). When duplex printing is not enabled, this
property is ignored (the value should always be 0).
Syntax:
www.nicelabel.com
August 2011
PageNumber As Long
PrintAsGraphics
Description:
When this property is set to TRUE, the rectangle will always be printed as graphics, even
if the printer supports printing it with an internal command.
Syntax:
PrintAsGraphics As Boolean
Radius
Description:
Radius property represents the radius of the rectangle corners.
Syntax:
Radius As Long
Resize
Description:
Resize the element to the size Width, Height. The element is resized to the closest size in
case, that all sizes are not possible.
Syntax:
Resize(Width As Long, Height As Long)
See also:
ResizeFlag
ResizeFlag
Description:
Flag, which defines, how the object can be resized.
Possible values are:
Value
Description
no resizing
0x88
0x22
www.nicelabel.com
0x55
August 2011
Syntax:
Property ResizeFlag As Long
Access Rights:
read-only
See also:
Resize
RotateFlag
Description:
Flag, which defines, how the object can be rotated.
Possible values are:
Value
Description
no rotation
0x07
90 degrees rotation
0x02
0xFF
Syntax:
Property RotateFlag As Long
Access Rights:
read-only
See also:
Rotation
Rotation
Description:
Specifies the elements rotation. When the element can be rotated only in steps of 90
degrees.
The valid values for the property are:
www.nicelabel.com
Value
August 2011
Description
0 deg.
90 deg.
180 deg.
270 deg.
When the element can be rotated in steps of 1 degree, the property has the value from 0
to 359.
Syntax:
Rotation As Long
See also:
RotateFlag
Selected
Description:
When the element is selected, this property is TRUE.
Syntax:
Selected As Boolean
Status
Description:
Status of the object.
Possible values are :
Value
Description
OK
Error condition
Phantom
Syntax:
Property Status As Long
Access Rights:
read-only
www.nicelabel.com
August 2011
ThicknessX
Description:
ThicknessX property represents the thickness of the horizontal
lines of the rectangle.
Syntax:
ThicknessX As Long
See also:
Color, FillColor, FillStyle, LineStyle, ThicknessY
ThicknessY
Description:
ThicknessY property represents the thickness of the vertical lines of the rectangle.
Syntax:
ThicknessY As Long
See also:
Color, FillColor, FillStyle, LineStyle, ThicknessX
Top
Description:
Top position of the element (in 0.01 mm units).
Syntax:
Property Top As Long
Access Rights:
read-only
See also:
AnchorPoint, Height, Left, Width
Variable
Description:
Returns the interface to the variable, which is attached to the element.
Syntax:
www.nicelabel.com
August 2011
Version
Availability
Properties
Version
Availability
Move
3,4,5
AnchorElementID
3,4,5
Resize
3,4,5
AnchorLevel
3,4,5
SetContents
3,4,5
AnchorPoint
3,4,5
SetVariable
3,4,5
BestFit
3,4,5
Color
www.nicelabel.com
4,5
Contents
3,4,5
ContentsMask
3,4,5
August 2011
FontName
3,4,5
FormatID
3,4,5
Height
3,4,5
ID
3,4,5
IsBold
3,4,5
IsInverse
3,4,5
IsItalic
3,4,5
IsLocked
3,4,5
IsMirror
3,4,5
IsStacked
3,4,5
IsStrikeOut
3,4,5
IsUnderlined
3,4,5
Justification
4,5
Kind
3,4,5
Left
3,4,5
MaskCharacter
www.nicelabel.com
4,5
MaxSizeX
3,4,5
MaxSizeY
3,4,5
MinSizeX
3,4,5
MinSizeY
3,4,5
Name
3,4,5
PageNumber
3,4,5
PtSizeX
3,4,5
PtSizeY
3,4,5
ResizeFlag
3,4,5
RotateFlag
3,4,5
Rotation
3,4,5
ScaleFactor
3,4,5
Selected
3,4,5
SpacingX
3,4,5
SpacingY
3,4,5
Status
3,4,5
Top
3,4,5
Variable
3,4,5
Width
3,4,5
ZOrder
3,4,5
August 2011
AnchorElementID
Description:
Currently not used. Intended to be used, when position of one element can be dependant
on position/size of another element.
Syntax:
AnchorElementID As Long
AnchorLevel
Description:
Currently not used.
Syntax:
AnchorLevel As Long
AnchorPoint
Description:
Identifies the point of the object, which is fixed on the label. If the object size is changed,
the specified AnchorPoint remains on the same position.
Possible values:
Value
Description
top left
top center
top right
mid left
mid center
mid right
bottom left
bottom center
bottom right
Syntax:
AnchorPoint As Long
See also:
Width, Height, Left, Top
www.nicelabel.com
August 2011
BestFit
Description:
This property is TRUE if BestFit option for font resizing is enabled.
Syntax:
BestFit As Boolean
Color
Description:
With 32-bit value you can specify any RGB color. The color value has the following
hexadecimal form:
0x00bbggrr
The low-order byte (rr) contains a value for the relative intensity of red; the second byte
(gg) contains a value for green; and the third byte (bb) contains a value for blue. The
fourth byte byte must be zero.
Each color parameter can range from 0x0 to 0xFF.
Syntax:
Color As Long
Contents
Description:
Returns the current contents of the element.
Syntax:
Property Contents As String
Access Rights:
read-only
ContentsMask
Description:
www.nicelabel.com
August 2011
FontName
Description:
FontName property represents the name of the font used within paragraph.
Syntax:
FontName As String
FormatID
Description:
This is the ID of a contents format, which specifies the character set, which is allowed to
be used for the element.
The following IDs are valid:
Value
Description
All
Numeric
Alphanumeric
Letters
7 bit
Hex
Date
Time
Details about the characters in each format can be found in formats.def file, located on
BIN\SYSTEM directory.
Syntax:
FormatID As Long
Height
Description:
Height of the element (in 0.01 mm units).
Syntax:
Property Height As Long
Access Rights:
read-only
www.nicelabel.com
August 2011
See also:
Width, AnchorPoint, Left, Top
ID
Description:
ID of the element
Syntax:
Property ID As Long
Access Rights:
read-only
IsBold
Description:
When the font for the Paragraph element has enabled Bold property then this property is
TRUE.
Syntax:
IsBold As Boolean
IsInverse
Description:
This property is TRUE if Inverse efect is enabled.
Syntax:
IsInverse As Boolean
IsItalic
Description:
When the font for the Paragraph element has enabled Italic property then this property is
TRUE.
Syntax:
IsItalic As Boolean
IsLocked
Description:
www.nicelabel.com
August 2011
When the elements position is locked on the label, this property has the value TRUE
Syntax:
IsLocked As Boolean
IsMirror
Description:
This property is TRUE if Mirror efect is enabled.
Syntax:
IsMirror As Boolean
IsStacked
Description:
The property defines if the text is normal or stacked
Syntax:
IsStacked As Boolean
IsStrikeOut
Description:
The property defines if the text is striked out
Syntax:
IsStrikeOut As Boolean
IsUnderLined
Description:
The property defines if the text is underlined
Syntax:
IsUnderlined As Boolean
Justification
Description:
Justification proprety represents how the contents of the text object will be justified.
Possible values are:
www.nicelabel.com
Value
August 2011
Description
None
Right
Left
Center
Full
Syntax:
Justification As Long
Kind
Element kind.
Possible values are:
Value
Description
301
TextObject
302
RectangleObject
303
BitmapObject
304
BarcodeObject
305
LineObject
306
InverseObject
307
OleObject
308
309
ParagraphObject
312
RTFTextObject
313
EllipseObject
Syntax:
Property Kind As Long
Access Rights:
read-only
www.nicelabel.com
August 2011
Left
Description:
Left position of the element (in 0.01 mm units).
Syntax:
Property Left As Long
Access Rights:
read-only
See also:
Width, AnchorPoint, Hight, Top
MaskCharacter
This property defines the mask character for the contents mask of the text object
Syntax:
MaskCharacter as String
MaxSizeX
MaxSizeX property represents the maximim size of the font size in horizontal direction
which is allowed when BestFit is enabled.
Syntax:
MaxSizeX As Long
See also:
BestFit, MaxSizeY, MinSizeX, MinSizeY, SpacingX, SpacingY
MaxSizeY
MaxSizeY property represents the maximim size of the font size in vertical direction which
is allowed when BestFit is enabled.
Syntax:
MaxSizeY As Long
See also:
BestFit, MaxSizeX, MinSizeX, MinSizeY, SpacingX, SpacingY
MinSizeX
Description:
www.nicelabel.com
August 2011
MinSizeX property represents the minimum size of the font size in horizontal direction
which is allowed when BestFit is enabled.
Syntax:
MinSizeX As Long
See also:
BestFit, MaxSizeX, MaxSizeY, MinSizeY, SpacingX, SpacingY
MinSizeY
Description
MinSizeY property represents the minimum size of the font size in vertical direction which
is allowed when BestFit is enabled.
Syntax:
MinSizeY As Long
See also:
BestFit, MaxSizeX, MaxSizeY, MinSizeX, SpacingX, SpacingY
Move
Description:
Move the element to the location X, Y
Syntax:
Move(X As Long, Y As Long)
Name
Description:
Name property represents the name of the RTF text.
Syntax:
Name As String
PageNumber
Description:
The Page index, where the element is located. When Duplex print is used, this index can
have the value 0 (first page) or 1 (second page). When duplex printing is not enabled, this
property is ignored (the value should always be 0).
www.nicelabel.com
August 2011
Syntax:
PageNumber As Long
PtSizeX
Description:
PtSizeX represents font size in horizontal direction. Default size is 0. In this case default
size for selected font is set.
Syntax:
PtSizeX As Long
See also:
Color, Fontname, IsBold, IsItalic, IsInverse, PtSizeY
PtSizeY
Description:
PtSizeY represents vertical font size.
Syntax:
PtSizeY As Long
See also:
Color, Fontname, IsBold, IsItalic, IsInverse, PtSizeX
Resize
Description:
Resize the element to the size Width, Height. The element is resized to the closest size in
case, that all sizes are not possible.
Syntax:
Resize(Width As Long, Height As Long)
See also:
ResizeFlag
ResizeFlag
Description:
Flag, which defines, how the object can be resized.
www.nicelabel.com
August 2011
Description
no resizing
0x88
0x22
0x55
Syntax:
Property ResizeFlag As Long
Access Rights:
read-only
See also:
Resize
RotateFlag
Description:
Flag, which defines, how the object can be rotated.
Possible values are:
Value
Description
no rotation
0x07
90 degrees rotation
0x02
0xFF
Syntax:
Property RotateFlag As Long
Access Rights:
read-only
See also:
Rotation
www.nicelabel.com
August 2011
Rotation
Description:
Specifies the elements rotation. When the element can be rotated only in steps of 90
degrees.
The valid values for the property are:
Value
Description
0 deg.
90 deg.
180 deg.
270 deg.
When the element can be rotated in steps of 1 degree, the property has the value from 0
to 359.
Syntax:
Rotation As Long
See also:
RotateFlag
Selected
Description:
When the element is selected, this property is TRUE.
Syntax:
Selected As Boolean
SetContents
Description:
When the contents of an element should be changed, SetContents method should be
called. In case of success (the Value is valid for the element), the function returns 0. In
case of an error, the function returns 1.
Syntax:
Function SetContents(Value As String) As Long
www.nicelabel.com
August 2011
SetVariable
Description:
Connects the element to the variable with ID. If the return value of the function is 1, then
some error occured during the connection. The best example for this is that you want
connect variable with fixed length to an element which requires different fixed lenght.
(EAN13 barcode). In such case element is not connected to any variable it is fixed.
Syntax:
Function SetVariable(ID As Long) As Long
SpacingX
Description:
With SpacingX property you select spacing between each character.
Syntax:
SpacingX As Long
See also:
BestFit, MaxSizeX, MaxSizeY, MinSizeX, MinSizeY, SpacingY
SpacingY
Description:
With SpacingY property you select spacing between each line.
Syntax:
SpacingY As Long
See also:
BestFit, MaxSizeX, MaxSizeY, MinSizeX, MinSizeY, SpacingX
Status
Description:
Status of the object.
Possible values are :
Value
Description
OK
Error condition
www.nicelabel.com
August 2011
Phantom
Syntax:
Property Status As Long
Access Rights:
read-only
Top
Description:
Top position of the element (in 0.01 mm units).
Syntax:
Property Top As Long
Access Rights:
read-only
See also:
Width, AnchorPoint, Left, Height
Variable
Description:
Returns the interface to the variable, which is attached to the element.
Syntax:
Property Variable As IVar
Access Rights:
read-only
Width
Description:
Width of the element (in 0.01 mm units).
Syntax:
Property Width As Long
Access Rights:
www.nicelabel.com
August 2011
read-only
See also:
Top, AnchorPoint, Left, Height
ZOrder
Description:
Value of Z order of the object position. When the Zorder value is the highest, the element
is placed on the top of all others.
Syntax:
ZOrder As Long
Version
Availability
Properties
Version
Availability
Move
3,4,5
AnchorElementID
3,4,5
Resize
3,4,5
AnchorLevel
3,4,5
SetContents
3,4,5
AnchorPoint
3,4,5
SetVariable
3,4,5
BestFit
3,4,5
CharSet
3,4,5
Color
www.nicelabel.com
4,5
Contents
3,4,5
ContentsMask
3,4,5
FontName
3,4,5
FormatID
3,4,5
Height
3,4,5
ID
3,4,5
IsBold
3,4,5
IsInverse
3,4,5
IsItalic
3,4,5
IsLocked
3,4,5
IsMirror
3,4,5
IsRTL
3,4,5
IsStacked
3,4,5
August 2011
IsStrikeOut
3,4,5
IsUnderlined
3,4,5
Justification
4,5
Kind
3,4,5
Left
3,4,5
MaskCharacter
4,5
MaxSizeX
3,4,5
MaxSizeY
3,4,5
MinSizeY
3,4,5
MinSizeY
3,4,5
NumberOfLines
Name
3,4,5
PageNumber
3,4,5
PtSizeX
3,4,5
PtSizeY
3,4,5
ResizeFlag
3,4,5
RotateFlag
3,4,5
Rotation
3,4,5
ScaleFactor
3,4,5
Selected
3,4,5
SpacingX
3,4,5
SpacingY
3,4,5
StartAngle
Status
3,4,5
TextAngle
TextDirection
Top
3,4,5
Variable
3,4,5
Width
3,4,5
ZOrder
3,4,5
AnchorElementID
Description:
Currently not used. Intended to be used, when position of one element can be dependant
on position/size of another element.
Syntax:
www.nicelabel.com
August 2011
AnchorElementID As Long
AnchorLevel
Description:
Currently not used.
Syntax:
AnchorLevel As Long
AnchorPoint
Description:
Identifies the point of the object, which is fixed on the label. If the object size is changed,
the specified AnchorPoint remains on the same position.
Possible values:
Value
Description
top left
top center
top right
mid left
mid center
mid right
bottom left
bottom center
bottom right
Syntax:
AnchorPoint As Long
See also:
Top, Hight, Left, Height
BestFit
Description:
This property is TRUE if BestFit option for font resizing is enabled.
Syntax:
www.nicelabel.com
August 2011
BestFit As Boolean
See also:
MaxSizeX, MaxSizeY, MinSizeX, MinSizeY, SpacingX, SpacingY
CharSet
Description:
This property sets character set for text element and selected font.
Possible values are:
Language
CharSet
Chinese (Trad.)
136
Croatian
238
Czech
238
Danish
Dutch
English
Finnish
French
German
Greek
161
Hebrew
177
Hungarian
238
Italian
Lithuanian
186
Polish
238
Russian
204
Serbian
238
Slovak
238
Slovene
238
Spanish
Swedish
Turkish
162
Chinese (Simpl.)
134
Japanese
128
Thai
222
www.nicelabel.com
August 2011
Portuguese
Ukrainian
204
Norwegian
Syntax:
Property CharSet As Long
Access Rights:
read-write
Color
Description:
With 32-bit value you can specify any RGB color. The color value has the following
hexadecimal form:
0x00bbggrr
The low-order byte (rr) contains a value for the relative intensity of red; the second byte
(gg) contains a value for green; and the third byte (bb) contains a value for blue. The
fourth byte byte must be zero.
Each color parameter can range from 0x0 to 0xFF.
Syntax:
Color As Long
See also:
FontName, IsBold, IsInverse, IsItalic, IsMirror, IsRTL, SpacingX,
SpacingY, PtSizeX, PtSizeY
Contents
Description:
Returns the current contents of the element.
Syntax:
Property Contents As String
Access Rights:
read-only
www.nicelabel.com
August 2011
ContentsMask
Description:
IsRTL, SpacingX,
FormatID
Description:
This is the ID of a contents format, which specifies the character set, which is allowed to
be used for the element.
The following IDs are valid:
Value
Description
All
Numeric
Alphanumeric
Letters
7 bit
Hex
Date
Time
Details about the characters in each format can be found in formats.def file, located on
BIN\SYSTEM directory.
Syntax:
FormatID As Long
www.nicelabel.com
August 2011
Height
Description:
Height of the element (in 0.01 mm units).
Syntax:
Property Height As Long
Access Rights:
read-only
See also:
Top, AnchorPoint, Left, Width
ID
Description:
ID of the element
Syntax:
Property ID As Long
Access Rights:
read-only
IsBold
Description:
When the font for the Paragraph element has enabled Bold property then this property is
TRUE.
Syntax:
IsBold As Boolean
See also:
Color, FontName, IsInverse, IsItalic, IsMirror, IsRTL, SpacingX,
SpacingY, PtSizeX, PtSizeY
IsInverse
Description:
This property is TRUE if Inverse efect is enabled.
Syntax:
www.nicelabel.com
August 2011
IsInverse As Boolean
See also:
Color, FontName, IsBold, IsItalic, IsMirror, IsRTL, SpacingX,
SpacingY, PtSizeX, PtSizeY
IsItalic
Description:
When the font for the Paragraph element has enabled Italic property then this property is
TRUE.
Syntax:
IsItalic As Boolean
See also:
Color, FontName, IsBold, IsInverse, IsMirror, IsRTL, SpacingX,
SpacingY, PtSizeX, PtSizeY
IsLocked
Description:
When the elements position is locked on the label, this property has the value TRUE
Syntax:
IsLocked As Boolean
IsMirror
Description:
This property is TRUE if Mirror efect is enabled.
Syntax:
IsMirror As Boolean
See also:
Color, FontName, IsBold, IsInverse, IsItalic, IsRTL, SpacingX,
SpacingY, PtSizeX, PtSizeY
IsRTL
Description:
www.nicelabel.com
August 2011
The client application can check the possibility to set this property by setting it to another
value. If the property value (after reading) still has the old value, this means it can not be
set. In this case the user interface involved can be disabled.
Syntax:
Property IsRTL As Boolean
See also:
Color, FontName, IsBold, IsInverse, IsItalic, IsMirror, SpacingX,
SpacingY, PtSizeX, PtSizeY
IsStacked
Description:
Sets and gets the Stacked text attribute.
Syntax:
Property IsStacked As Boolean
Justification
Description:
Justification proprety represents how the contents of the text object will be justified.
Possible values are:
Value
Description
None
Right
Left
Center
Full
Syntax:
Justification As Long
www.nicelabel.com
August 2011
Kind
Element kind.
Possible values are:
Value
Description
301
TextObject
302
RectangleObject
303
BitmapObject
304
BarcodeObject
305
LineObject
306
InverseObject
307
OleObject
308
309
ParagraphObject
312
RTFTextObject
313
EllipseObject
Syntax:
Property Kind As Long
Access Rights:
read-only
Left
Description:
Left position of the element (in 0.01 mm units).
Syntax:
Property Left As Long
Access Rights:
read-only
See also:
Top, AnchorPoint, Width, Height
MaskCharacter
Description:
www.nicelabel.com
August 2011
With MaskCharacter you can define the mask character for the Text object.
Syntax:
MaskCharacter As String
Move
Description:
Move the element to the location X, Y
Syntax:
Move(X As Long, Y As Long)
NumberOfLines
Description:
This property returns the number of lines in text object for the current contents.
Syntax:
NumberOfLines As Long
Access Rights:
read-only
Name
Description:
Name property represents the name of the RTF text.
Syntax:
Name As String
Selected
PageNumber
Description:
The Page index, where the element is located. When Duplex print is used, this index can
have the value 0 (first page) or 1 (second page). When duplex printing is not enabled, this
property is ignored (the value should always be 0).
Syntax:
www.nicelabel.com
August 2011
PageNumber As Long
PtSizeX
Description:
PtSizeX represents font size in horizontal direction. Default size is 0. In this case default
size for selected font is set.
Syntax:
PtSizeX As Long
See also:
Color, FontName, IsBold, IsInverse, IsItalic, IsMirror, SpacingX,
SpacingY, IsRTL, PtSizeY
PtSizeY
Description:
PtSizeY represents vertical font size.
Syntax:
PtSizeY As Long
See also:
Color, FontName, IsBold, IsInverse, IsItalic, IsMirror, SpacingX,
SpacingY, IsRTL, PtSizeX
Resize
Description:
Resize the element to the size Width, Height. The element is resized to the closest size in
case, that all sizes are not possible.
Syntax:
Resize(Width As Long, Height As Long
See also:
ResizeFlag
ResizeFlag
Description:
Flag, which defines, how the object can be resized.
www.nicelabel.com
August 2011
Description
no resizing
0x88
0x22
0x55
Syntax:
Property ResizeFlag As Long
Access Rights:
read-only
See also:
Resize
RotateFlag
Description:
Flag, which defines, how the object can be rotated.
Possible values are:
Value
Description
no rotation
0x07
90 degrees rotation
0x02
0xFF
Syntax:
Property RotateFlag As Long
Access Rights:
read-only
See also:
Rotation
www.nicelabel.com
August 2011
Rotation
Description:
Specifies the elements rotation. When the element can be rotated only in steps of 90
degrees.
Possible valuesThe valid values for the property are:
Value
Description
0 deg.
90 deg.
180 deg.
270 deg.
When the element can be rotated in steps of 1 degree, the property has the value from 0
to 359.
Syntax:
Rotation As Long
See also:
RotateFlag
ScaleFactor
Description:
Sets an gets the Scaling factor. Setting this property does not always result in a
change - depends on the font type
Syntax:
ScaleFactor As Long
Selected
Description:
When the element is selected, this property is TRUE.
Syntax:
Selected As Boolean
www.nicelabel.com
August 2011
SetContents
Description:
When the contents of an element should be changed, SetContents method should be
called. In case of success (the Value is valid for the element), the function returns 0. In
case of an error, the function returns 1.
Syntax:
Function SetContents(Value As String) As Long
SetVariable
Description:
Connects the element to the variable with ID. If the return value of the function is 1, then
some error occured during the connection. The best example for this is that you want
connect variable with fixed length to an element which requires different fixed lenght.
(EAN13 barcode). In such case element is not connected to any variable it is fixed.
Syntax:
Function SetVariable(ID As Long) As Long
SpacingX
Description:
With SpacingX property you select spacing between each character.
Syntax:
SpacingX As Long
See also:
Color, FontName, IsBold, IsInverse, IsItalic, IsMirror, PtSizeY,
SpacingY, IsRTL, PtSizeX
SpacingY
Description:
With SpacingY property you select spacing between each line.
Syntax:
SpacingY As Long
See also:
www.nicelabel.com
August 2011
Status
Description:
Status of the object.
Possible values are :
Value
Description
OK
Error condition
Phantom
Syntax:
Property Status As Long
Access Rights:
read-only
TextAngle
Description:
www.nicelabel.com
August 2011
With TexctAngle property you define max angle of the curved text. Valid values are
between 0 and 360 degrees.
Syntax:
TextAngle As Long
See also:
StartAngle, TextDirection
TextDirection
Description:
With TexctDirection property you define direction of the curved text. Valid values are:
1 Clockwise
2 Counterclockwise
Syntax:
TextDirection As Long
See also:
StartAngle, TextAngle
Top
Description:
Top position of the element (in 0.01 mm units).
Syntax:
Property Top As Long
Access Rights:
read-only
See also:
Width, AnchorPoint, Left, Height
Variable
Description:
www.nicelabel.com
August 2011
Version
Availability
Properties
Version
Availability
3,4,5
AutoTrim
4,5
4,5
BreakLines
3,4,5
GetValue
3,4,5
Default
3,4,5
SetValue
3,4,5
DefaultValue
3,4,5
www.nicelabel.com
August 2011
ShouldTraceNow
3,4,5
DefType
3,4,5
Undefine
3,4,5
Description
3,4,5
DynamicValue
3,4,5
FixedLength
3,4,5
FormatID
3,4,5
HasMaxValue
3,4,5
HasMinValue
3,4,5
ID
3,4,5
IncrementCount
3,4,5
IncrementKind
3,4,5
IncrementStep
3,4,5
IncrementStep2
3,4,5
IncrementStep3
3,4,5
IncrementType
3,4,5
InputPicture
3,4,5
IsBasedOnQuantity
3,4,5
IsDisabled
3,4,5
IsInternal
3,4,5
IsMultiLine
3,4,5
IsStoreVariable
www.nicelabel.com
IsUsed
3,4,5
IsVarQuantity
3,4,5
JustificationType
3,4,5
Length
3,4,5
LineCount
3,4,5
LineLength
3,4,5
MaxValue
3,4,5
MinValue
3,4,5
Name
3,4,5
OutputPicture
3,4,5
PadCharacter
3,4,5
PickList
3,4,5
PictureType
3,4,5
Prefix
3,4,5
Prompt
3,4,5
PromptCount
3,4,5
August 2011
PromptOrder
3,4,5
RollOver
3,4,5
StrictChecking
3,4,5
Suffix
3,4,5
Tag
4,5
TraceOn
3,4,5
ValueRequired
3,4,5
VarType
3,4,5
WordWrap
3,4,5
AutoTrim
Description:
AutoTrim property defines the behaviour of SetContents function of IVar interface. When
AutoTrim is TRUE the value assinged to the variable is first trimmed to the length of the
variable - this prevents errors when the provided value is too long.
Default value is false.
Syntax:
Propery AutoTrim As Boolean
BreakLines
Description:
If variable has BreakLines option enabled then value of the WordWrap property is TRUE.
Syntax:
BreakLines As Boolean
Default
Description:
Default method returns the current value of the variable.
Syntax:
Property Default As String
Access Rights:
read-only
www.nicelabel.com
August 2011
DefaultValue
Description:
In DefaultValue property is stored a default value for the variable.
Syntax:
DefaultValue As String
See also:
DynamicValue, FixedLenght, IsBasedonQuantity, ValueRequired
DefType
Description:
DefType property represents the case on which default value for the variable will be
selected.
Possible values are:
Value
Description
Syntax:
DefType As Long
DependsOnFunction
Description:
DependsOnFunction method is used for checking if variable is dependet of the function.
For input parameter is used function ID. In case that variable is dependet of the function
then return value is TRUE.
Syntax:
Function DependsOnFunction(FunctionID As Long) As Boolean
Description
Description:
Description property represents the description of the variable.
www.nicelabel.com
August 2011
Syntax:
Description As String
DynamicValue
Description:
DynamicValue has value TRUE, if "Dynamic value" option for default value is enabled.
Syntax:
DynamicValue As Boolean
See also:
DefaultValue, FixedLenght, IsBasedonQuantity, ValueRequired
FixedLength
Description:
If variable has fixed lenght then FixedLength property has value TRUE.
Syntax:
FixedLength As Boolean
See also:
DefaultValue, DynamicValue, IsBasedonQuantity, ValueRequired
FormatID
Description:
This is the ID of a contents format, which specifies the character set, which is allowed to
be used for the element.
The following IDs are valid:
Value
www.nicelabel.com
Description
All
Numeric
Alphanumeric
Letters
7 bit
Hex
Date
Time
August 2011
Details about the characters in each format can be found in formats.def file, located on
BIN\SYSTEM directory.
Syntax:
FormatID As Long
GetPureValue
Description:
This function returns a pure value of the variable without any prefix or suffix in case they
are defined.
Syntax:
Function GetPureValue() As String
See also:
GetValue, SetValue
GetValue
Description:
GetValue method returns the current value of the variable.
Syntax:
Function GetValue() As String
See also:
GetPureValue, SetValue
HasMaxValue
Description:
HasMaxValue property has value TRUE, if range check option Max value is enabled.
Syntax:
HasMaxValue As Boolean
See also:
HasMinValue, MaxValue, MinValue, RollOver
www.nicelabel.com
August 2011
HasMinValue
Description:
HasMinValue property has value TRUE, if range check option Min value is enabled.
Syntax:
HasMinValue As Boolean
See also:
HasMaxValue, MaxValue, MinValue, RollOver
ID
Description:
ID of the element
Syntax:
Property ID As Long
Access Rights:
read-only
IncrementCount
Description:
IncrementCount property represents the number on how many printed labels counter will
be incremented.
Syntax:
IncrementCount As Long
See also:
IncrementKind, IncrementStep, IncrementStep2, IncrementStep3,
IncrementType
IncrementKind
Description:
IncrementKind property represents the kind of the increment. Increment can be performed
on several types of variables.
Possible values are:
Value
www.nicelabel.com
Description
August 2011
Integer
Date
Time
Syntax:
Property IncrementKind As Long
Access Rights:
read-only
See also:
IncrementCount, IncrementStep, IncrementStep2, IncrementStep3,
IncrementType
IncrementStep
Description:
IncrementStep property represents the step of the increment.
Please Note:
Incrementing depends on the type of the variable. If variable type is Integer then only
IncrementStep property is used. For all other types such as Time or Date there are
IncrementStep2 and IncrementStep3. In each of them there is only one number.
Date:
Days are stored in IncrementStep
Months are stored in IncrementStep2
Years are stored in IncrementStep3
Time:
Hours are stored in IncrementStep
Minutes are stored in IncrementStep2
Seconds are stored in IncrementStep3
Syntax:
IncrementStep As Long
See also:
IncrementCount, IncrementKind, IncrementStep2, IncrementStep3,
IncrementType
www.nicelabel.com
August 2011
IncrementStep2
Description:
See IncrementStep
Syntax:
IncrementStep2 As Long
See also:
IncrementCount, IncrementKind, IncrementStep, IncrementStep3,
IncrementType
IncrementStep3
Description:
See IncrementStep
Syntax:
IncrementStep3 As Long
See also:
IncrementCount, IncrementKind, IncrementStep, IncrementStep2,
IncrementType
IncrementType
Description:
IncrementType property represents the type of incrementation.
Possible values are:
Value
Description
None
Increment
Decrement
Offset
Syntax:
Property IncrementType As Long
www.nicelabel.com
August 2011
Access Rights:
read-only
See also:
IncrementCount, IncrementKind, IncrementStep, IncrementStep2,
IncrementStep3
InputPicture
Description:
InputPicture property is represents a string (Input format), which can be set in Variable
dialog box under Format tab. Each type of variable has it's own possibilites for input
pictures.
Syntax:
InputPicture As String
IsBasedOnQuantity
Description:
IsBasedOnQuantity property has value TRUE, if "Based on var. quantity" is enabled.
Syntax:
IsBasedOnQuantity As Boolean
See also:
DefaultValue, DynamicValue, FixedLenght, ValueRequired
IsDisabled
Description:
This property sets (or gets) the variables disabled attribute. When this attribute is set,
the variable is not shown in the variables selection lists.
Syntax:
Property IsDisabled As Boolean
IsInternal
Description:
ReadOnly property, which tells the client if this is an internal variable the variable, which
gets the value from the system rather than from the label data.
www.nicelabel.com
August 2011
Syntax:
Property IsInternal As Boolean
Access Rights:
read-only
IsMultiLine
Description:
If variable has MultiLine option enabled then value of the IsMultiLine property is TRUE.
Syntax:
IsMultiLine As Boolean
See also:
IsVarQuantity, Length, PickList
IsStoreVariable
Description:
If variable is store variable value of the IsStoreVariable property is TRUE.
Syntax:
IsStoreVariable As Boolean
IsUsed
Description:
IsUsed has value TRUE, if variable is connected with an element on the label. In the other
case IsUsed has value FALSE.
Syntax:
property IsUsed As Boolean
Access Rights:
read-only
IsVarQuantity
Description:
IsVarQuantity property has value TRUE, if "Treat as variable quantity" is enabled.
www.nicelabel.com
August 2011
Syntax:
IsVarQuantity As Boolean
See also:
IsMultiLine, Length, PickList
JustificationType
Description:
JustificationType proprety represents how the contents of the variable will be justified.
Possible values are:
Value
Description
None
Right
Left
Center
Full
www.nicelabel.com
August 2011
Syntax:
LineCount As Long
LineLength
Description:
LineLength property represents the lenght of the one line. LineLength can have value
between 1 and 4096.
Syntax:
LineLength As Long
MaxValue
Description:
MaxValue represents the minimal value for rangechecking.
Syntax:
MaxValue As String
See also:
HasMaxValue, HasMinValue, MinValue, RollOver
MinValue
Description:
MinValue represents the minimal value for rangechecking.
Syntax:
MinValue As String
See also:
HasMaxValue, HasMinValue, MaxValue, RollOver
Name
Description:
Name property represents the name of the variable. Name can be only 12 characters
long.
Syntax:
Name As String
www.nicelabel.com
August 2011
OutputPicture
Description:
OutputPicture property is represents a string (Output format), which can be set in Variable
dialog box under Format tab. Each type of variable has it's own possibilites for output
pictures.
Syntax:
OutputPicture As String
PadCharacter
Description:
PadCharacter property represents the PadCharacter of the variable.
Syntax:
PadCharacter As String
See also:
Prefix, Suffix
PickList
Description:
This property retrieves the pick list for the current variable.
Syntax:
Property PickList As String
Access Rights:
read-only
See also:
IsMultiLine, IsVarQuantity, Length
PictureType
Description:
Picture type property represents, which picture for the variable is selected.
Possible values are:
Value
0
www.nicelabel.com
Description
None
August 2011
Date
Time
Floating point
Money
List
Binary
Syntax:
PictureType As Long
Prefix
Description:
Prefix property represents the prefix of the variable.
Syntax:
Prefix As String
See also:
PadCharacter, Suffix
Prompt
Description:
In Prompt property is stored a prompt string.
Syntax:
Prompt As String
PromptCount
Description:
PromptCount property represents the number on how many printed labels it will be
prompted.
Syntax:
PromptCount As Long
PromptOrder
Description:
www.nicelabel.com
August 2011
ReadWrite property, with which you can get or set the prompt order of the variable.
Syntax:
Property PromptOrder As Integer
Access Rights:
read-write
RollOver
Description:
RollOver has value TRUE, if "RollOver" option is enabled.
Syntax:
RollOver As Boolean
See also:
HasMaxValue, HasMinValue, MaxValue, MinValue
SetValue
Description:
SetValue method is used for setting the value for the variable.
Syntax:
Function SetValue(Value As String) As Long
See also:
GetPureValue, GetValue
ShouldTraceNow
Description:
In case that you want save value of the variable to the log file you should use
ShouldTraceNow method.
Syntax:
Function ShouldTraceNow(bStart As Boolean) As Boolean
StrictChecking
Description:
www.nicelabel.com
August 2011
StrictChecking property has value TRUE, if strict checking flag is enabled. Strict checking
flag prevents to connect a variable, with different length that is required by element, to an
element.
Syntax:
StrictChecking As Boolean
Suffix
Description:
Suffix property represents the suffix of the variable.
Syntax:
Suffix As String
See also:
PadCharacter, Prefix
Tag
Description:
Tag property is a simple integer property, that the client application can use for any kind of
internal processing.
Syntax:
Propery Tag As Long
TraceOn
Description:
TraceOn has value TRUE, if variable tracing is enabled.
Syntax:
TraceOn As Boolean
Undefine
Description:
Sets the InputType back to original. Intended Use:
www.nicelabel.com
August 2011
When one database variable is set, its value is never read again from the database until
the label is closed. With the Undefine call, the variable gets original state. This means
that its value will be retrieved from the database although the label is not closed in
between.
Syntax:
Function Undefine() As Boolean
ValueRequired
Description:
ValueRequired has value TRUE, if "ValueRequired" option for prompted variable is
enabled.
Syntax:
ValueRequired As Boolean
See also:
DefaultValue, DynamicValue, FixedLenght, IsBasedonQuantity
VarType
Description:
Vartype property represents the type of the variable.
Vartype property can have following values:
Value
Description
Prompt
System clock
Printer clock
Global
Generated
Overload
Database
Contents provider
Please note:
Overload type of the variable is internal type of the variable. It is used, when external
application sets value for the variable.
Contents provider is variable type, which is invisible to the user. Contents provider
variable is the result of contents provider.
www.nicelabel.com
August 2011
Syntax:
Property VarType As Long
Access Rights:
read-only
WordWrap
Description:
If variable has WordWrap option enabled then value of the WordWrap property is TRUE.
Syntax:
WordWrap As Boolean
Version
Availability
Add
3,4,5
Create
3,4,5
CreateGlobal
Count
Version
Availability
3,4,5
CreatePrompted
3,4,5
Delete
3,4,5
FindByID
3,4,5
FindByName
3,4,5
FlushList
3,4,5
Item
3,4,5
Remove
3,4,5
SetValues
Properties
4,5
Add
Description:
Add method adds a variable with specific ID to the variable list. In case of success TRUE
result is returned.
Syntax:
www.nicelabel.com
August 2011
CreateGlobal
Description:
CreateGlobal method creates new global variable variable. Output result is interface to the
new variable and input parameter is the name of the new global variable.
Syntax:
Function CreateGlobal(Name As String, Value As String, Format As
Long, Length As Long, Increment As Long) As IVar
www.nicelabel.com
ALL
NUMERIC
ALPHANUMERIC
LETTERS
7BIT
HEX
DATE
TIME
August 2011
0
1
2
3
4
5
6
7
Lenght
Represents global variable lenght.
Incremenet
Represents global variable increment.
=0 no incremenent
>0 - incremenet
<0 - decrement
See also:
Create, CreatePrompted, Delete, Remove
CreatePrompted
Description:
Create method creates new prompted variable. Output result is interface to the new
variable and input parameter is the name of the new variable.
Syntax:
Function CreatePrompted(Name As String) As IVar
See also:
Create, Delete, Remove
Delete
Description:
Delete method deletes a variable with specific ID. In case of success TRUE result is
returned.
Syntax:
Function Delete(ID As Long) As Boolean
See also:
Create, CreatePrompted, Remove
www.nicelabel.com
August 2011
FindByID
Description:
Returns the interface to the existing variable. Variable is selected with ID.
Syntax:
Function FindByID(ID As Long) As IVar
See also:
FindByName
FindByName
Description:
Description:
Returns the interface to the existing variable. Variable is selected with Name.
Syntax:
Function FindByName(Name As String) As IVar
See also:
FindByID
FlushList
Description:
FlushList method erases the whole variable list. If the operation was sucessfull TRUE
value is returned.
Syntax:
Function FlushList() As Boolean
Item
Description:
Returns the interface to the existing variable. Variable is selected with Index.
Syntax:
Function Item(Index As Long) As IVar
www.nicelabel.com
August 2011
Remove
Description:
Remove method removes a variable with specific ID from the variable list. In case of
success TRUE result is returned.
Syntax:
Function Remove(ID As Long) As Boolean
See also:
Create, CreatePrompted, Delete
SetValues
Description:
The IVariableList interface is extended to support setting multiple variable values with a
single command. The command is defined as:
Parameter Values should contain multiline value (one line for each variable). Each line
must be defined in format:
VariableName=VariableValue
The command will process each line and set the value for the variable. In case the
variable name is invalid (variable with that name does not exist),
the function will return an error.
In case the value is not valid for a variable, the function returns an error.
If en error is encountered, the processing of the functon will be terminated (remaining
lines will not be processed).
Functon returns 0 if the processing completes successfully. If not, an error code is
returned and calling application can use ErrorID and ErrorMessage properties of the
niceApp interface to process the error.
Syntax:
SetValues(Values As String)
www.nicelabel.com
August 2011
Version
Availability
4,5
Properties
Author
DefaultQuantity
www.nicelabel.com
Version
Availability
3,4,5
4,5
Description
3,4,5
GapX
3,4,5
GapY
3,4,5
IsMultiband
3,4,5
LabelDimensions
Unit
3,4,5
LabelOffsetX
3,4,5
LabelOffsetY
3,4,5
LabelSizeX
3,4,5
LabelSizeY
3,4,5
NumberOfBands
3,4,5
Overlap
3,4,5
PageOffsetX
3,4,5
PageOffsetY
3,4,5
PageSizeX
3,4,5
PageSizeY
3,4,5
PaperFormat
3,4,5
PaperSizeX
3,4,5
PaperSizeY
3,4,5
PhysPageSizeX
3,4,5
PhysPageSizeY
3,4,5
PrintPages
3,4,5
RadiusX
3,4,5
RadiusY
3,4,5
Title
3,4,5
UGapX
3,4,5
UGapY
3,4,5
ULabelOffsetB
3,4,5
ULabelOffsetR
3,4,5
ULabelOffsetX
3,4,5
ULabelOffsetY
3,4,5
August 2011
ULabelSizeX
3,4,5
ULabelSizeY
3,4,5
UOverlap
3,4,5
UPaperSizeX
3,4,5
UPaperSizeY
3,4,5
URadiusX
3,4,5
URadiusY
3,4,5
UGapY
3,4,5
WebX
3,4,5
WebY
3,4,5
Syntax:
Property Author As String
DefaultQuantity
Description:
Returns the default quantity, which is suggested before label production.
Syntax:
Property DefaultQuantity As Long
Access Rights:
read-only
Description
Description:
Returns the description of the label.
www.nicelabel.com
August 2011
Syntax:
Property Description As String
Access Rights:
read-only
GapX
Description:
Returns the gap between the labels in mm/100 for the X axis.
UGapX - gap between the labels in LabelDimensionsUnit (X axis)
Syntax:
Property GapX As Long
Access Rights:
read-only
See also:
GapY
GapY
Description:
Returns the gap between the labels in mm/100 for the Y axis.
UGapY - gap between the labels in LabelDimensionsUnit (Y axis)
Syntax:
Property GapY As Long
Access Rights:
read-only
See also:
GapX
www.nicelabel.com
August 2011
IsMultiband
Description:
Returns true if the label is desinged for multiband printing, otherwise result of the property
is false.
Syntax:
Property IsMultiBand As Boolean
Access Rights:
read-only
See also:
NumberOfBands
LabelDimensionsUnit
Description:
Returns the unit of measure used for the label settings.
Syntax:
Property LabelDimensionsUnit As String
Access Rights:
read-only
LabelOffsetX
Description:
Returns the left offset, which is defined in the label.
ULabelOffsetR - right offset (calculated by NiceLabel)
Syntax:
Property LabelOffsetX As Long
Access Rights:
read-only
See also:
www.nicelabel.com
August 2011
LabelOffsetY
LabelOffsetY
Description:
Returns the top offset, which is defined in the label.
ULabelOffsetB - bottom offset (calculated by NiceLabel)
Syntax:
Property LabelOffsetY As Long
Access Rights:
read-only
See also:
LabelOffsetX
LabelSizeX
Description:
Returns the height of the label.
ULabelSizeX represents the width of the label in defined units.
See also:
LabelSizeX
Syntax:
Property LabelSizeX As Long
Access Rights:
read-only
LabelSizeY
Description:
Returns the width of the label.
www.nicelabel.com
August 2011
NumberOfBands
Description:
Returns the number of bands, which are used in the label when multi-band label printing
is enabled.
Syntax:
Property NumberOfBands As Long
Access Rights:
read-only
See also:
IsMultiband
Overlap
Description:
Overlapping of the labels when using multi-band label printing in mm/100
Syntax:
Property Overlap As Long
Access Rights:
read-only
www.nicelabel.com
August 2011
PageOffsetX
Description:
Offset for the unprintable area (X axis)
Syntax:
Property PageOffsetX As Long
Access Rights:
read-only
See also:
PageOffsetX
PageOffsetY
Description:
Offset for the unprintable area (Y axis)
Syntax:
Property PageOffsetY As Long
Access Rights:
read-only
See also:
PageOffsetY
PageSizeX
Description:
Returns the width of the printable page.
Syntax:
Property PageSizeX As Long
Access Rights:
read-only
See also:
www.nicelabel.com
August 2011
PageSizeY
PageSizeY
Description:
Returns the height of the printable page.
Syntax:
Property PageSizeY As Long
Access Rights:
read-only
See also:
PageSizeX
PaperFormat
Description:
Returns the format of the paper. This is the dmPaperSize property from the DEVMODE
structure of the printer driver.
Syntax:
Property PaperFormat As Long
Access Rights:
read-only
PaperSizeX
Description:
Returns the paper size. This is the dmPaperWidth * 10 property from the DEVMODE
structure of the printer driver.
UPaperSizeX - the information expressed in LabelDimensionsUnit
Syntax:
Property PaperSizeX As Long
Access Rights:
read-only
www.nicelabel.com
August 2011
See also:
PaperSizeY
PaperSizeY
Description:
Returns the paper size. This is the dmPaperHeight * 10 property from the DEVMODE
structure of the printer driver.
UPaperSizeY - the information expressed in LabelDimensionsUnit
Syntax:
Property PaperSizeX As Long
Access Rights:
read-only
See also:
PaperSizeX
PhysPageSizeX
Description:
Returns the whole width of the page.
Syntax:
Property PhysPageSizeX As Long
Access Rights:
read-only
See also:
PhysPageSizeY
PhysPageSizeY
Description:
Returns the whole height of the page.
www.nicelabel.com
August 2011
Syntax:
Property PhysPageSizeY As Long
Access Rights:
read-only
See also:
PhysPageSizeX
PrintPages
Description:
Property returns true if the Print pages option is used in print dialog otherwise it returns
false. This option can be selected when printing multiple labels across.
Syntax:
Property RadiusX As Long
Access Rights:
read-only
RadiusX
Description:
Returns the radius value for the X axis of the label.
UradiusX in LabelDimensionsUnit (X axis)
Syntax:
Property RadiusX As Long
Access Rights:
read-only
See also:
RadiusX
RadiusY
Description:
www.nicelabel.com
August 2011
SetLabelSize
Description:
Use this method if you want to change the label size and other label settings. What is
possible to set can be seen in the parameters.
Syntax:
Function SetLabelSize(LabelWidth As Long, LabelHeight As Long, LeftOffset As Long,
TopOffset As Long, RightOffset As Long, BottomOffset As Long) As Boolean
Access Rights:
read-write
Title
Description:
Property retrieves the title of the label.
Syntax:
Property Title As String
Access Rights:
read-write
www.nicelabel.com
August 2011
UGapX
Description:
Property retrieves the GapX label setting in users measurment unit.
Syntax:
Property UGapX As String
Access Rights:
read-write
UGapY
Description:
Property retrieves the GapY label setting in users measurment unit.
Syntax:
Property UGapY As String
Access Rights:
read-write
ULabelOffsetB
Description:
Property retrieves bottom label offset setting in users measurment unit.
Syntax:
Property ULabelOffsetB As String
Access Rights:
read-write
ULabelOffsetR
Description:
.
www.nicelabel.com
August 2011
Syntax:
Property ULabelOffsetR As String
Access Rights:
read-write
ULabelOffsetX
Description:
Property retrieves left label offset setting in users measurment unit.
Syntax:
Property ULabelOffsetX As String
Access Rights:
read-write
ULabelOffsetY
Description:
Property retrieves top label offset setting in users measurment unit.
Syntax:
Property ULabelOffsetY As String
Access Rights:
read-write
ULabelOffsetR
Description:
Property retrieves right label offset setting in users measurment unit.
Syntax:
Property ULabelOffsetR As String
Access Rights:
read-write
www.nicelabel.com
August 2011
ULabelSizeX
Description:
Property retrieves label width setting in users measurment unit.
Syntax:
Property ULabelSizeX As String
Access Rights:
read-write
ULabelSizeY
Description:
Property retrieves label height setting in users measurment unit.
Syntax:
Property ULabelSizeY As String
Access Rights:
read-write
UOverlap
Description:
Property retrieves multiband overlaping setting in users measurment unit.
Syntax:
Property UOverlap As String
Access Rights:
read-write
UPaperSizeX
Description:
Property retrieves paper width setting in users measurment unit.
Syntax:
www.nicelabel.com
August 2011
UPaperSizeY
Description:
Property retrieves paper height setting in users measurment unit.
Syntax:
Property UPaperSizeY As String
Access Rights:
read-write
URadiusX
Description:
Property retrieves horizontal label radius setting in users measurment unit.
Syntax:
Property URadiusX As String
Access Rights:
read-write
URadiusY
Description:
Property retrieves vertical label radius setting in users measurment unit.
Syntax:
Property URadiusY As String
Access Rights:
read-write
WebX
Description:
www.nicelabel.com
August 2011
WebY
Description:
Returns the number of labels on the page (Y axis)
Syntax:
Property WebY as Long
Access Rights:
read-only
See also:
WebX
Version
Availability
Properties
JobRunEx
4,5
ReadWriteOpen
LabelImport
4,5
IsPrintOnly
SetControlEvent
4,5
TestConnection
3,4,5
www.nicelabel.com
Version
Availability
3,4,5
5
August 2011
IsPrintOnly
Description:
This property returns true if the NiceLabel/NiceEngine is running in print only mode. When
in print only mode some activex methods are not working or are working in different
manner.
Syntax:
IsPrintOnly As Boolean
JobRunEx
Description:
With this method NiceLabel is able to read the third-party job file, and execute the printing.
NiceLabel will use the Variable import filter DLLs to be able to execute third party job
files.
This method identifies the DLL based on the JobType parameter. In case the Variable
import filter DLL with specified JobType is not registered an error will be produced.
When appropriate filter DLL will be identified, NiceLabel will call the Conversion function in
the DLL, which converts the third-party job file to NiceLabels native job file format. In
order to support UNICODE values of the job file, NiceLabel will be updated to support
UTF-8 formatted JOB files (UTF8 boom must be included at the beginning of the JOB
file).
For implementation of the method check Oracle XML filter in the Nicelabel.
Syntax;
Function JobRunEx(FileName As String, JobType As Long) As Boolean
Explanation of the parameters:
FileName
Represents the Job file name.
JobType
Number of Job types that DLL supports
LabelImport
Description:
This method is used to import label files from another labeling software. Import filter has to
be design on the user side.
Import filter is a DLL, which is loaded on runtime when user requests to import labels from
another labeling software. The DLL is registered in the registry. When used, it passes
information about available import file types, which can be imported using the selected
filter.
NiceLabel is using the import filter DLL interface to retrieve the available file types that
can be used with the filter. After user of NiceLabel browses the file, NiceLabel passes this
file name to the filter, and the filter creates NiceLabels LBT file format.
LBT is a text-formatted file, which NiceLabel recognizes and can directly load.
www.nicelabel.com
August 2011
Syntax:
Function LabelImport(FilterID As Long, FormatID As Long,
ImportFile As String, ExportFile As String, EmbedGraphics As
Boolean) As Boolean
Explanation of the parameters:
FilterID
Name of the import filter (1,2,...)
FormatID
Name of the import filter function (1,2,...)
ImportFile
Path name to the original file.
ExportFile
Pathname to the destination file.
EmbedGraphics
Background picture embedded in the label:
True: embedded
False: not embedded
ReadWriteOpen
Description:
With this property you can control wether the labels opened through ActiveX are opened
in read only mode or not. If this property is true then the label is opened in read/write
mode and if modified it can be saved.
Syntax:
ReadWriteOpen As Boolean
SetControlEvent
Description:
Event objects provide means to synchronize between the caller application and the server
application. PrintEvent handling is implemented on Application level. The Event can be
set from calling application (ControlEvent). The setting method also defines, if the
ControlEvent should be released immediately after the first printing action (creation of
print job), or the ControlEvent will be released by calling application (calling the event
setting method with NULL parameter).
Syntax:
Function SetControlEvent(Event As Unknown, AutoRelease As Boolean)
As Boolean
Explanation of the parameters:
Event
It pass the Controlling event to NiceLabel application. If this
parameter is NULL, any existing controlling event will be
released.
AutoRelease
TRUE: after the print action is completed, the event will be
www.nicelabel.com
August 2011
Version
Properties
Availability
Check
4,5
Version
Availability
HasFilter
3,4,5
IsChecked
4,5
Level
4,5
Check
Description:
If the IsChecked property is set to false then the call to this method performs calculation of
the function based on current data and return 0 if successfull or non 0 if not successfull.
Also the IsChecked property is set to true after this call.
Syntax:
Function Check() As Long
HasFilter
Description:
This property returns true if the database definition uses filter.
Syntax:
Property HasFilter As Boolean
www.nicelabel.com
August 2011
IsChecked
Description:
If this property is set to false then the call to method Check performs calculation of the
function based on current data and return 0 if successfull or non 0 if not successfull. Also
this property is set to true after this call.
.
Syntax:
Property IsChecked As Boolean
Level
Description:
If the function is used in some other function then this function will have level 2 while its
parent function will have level 1, this goes in depth depending on how many dependant
function you have. It is needed when calculating the functions because those functions
with higher level need to be calculated first in order that functions with lower level are
calculated properly.
Syntax:
Property Level As Long
Explanation of the parameters:
FilterID
level number
Version
Availability
Properties
Version
Availability
4,5
IsChecked
4,5
Level
4,5
Check
Description:
If the IsChecked property is set to false then the call to this method performs calculation of
the function based on current data and return 0 if successfull or non 0 if not successfull.
Also the IsChecked property is set to true after this call.
Syntax:
www.nicelabel.com
August 2011
Syntax:
Property Level As Long
Explanation of the parameters:
FilterID
level number
Version
Availability
4,5
Properties
Version
Availability
IsChecked
4,5
IsUsed
4,5
Level
4,5
Check
Description:
If the IsChecked property is set to false then the call to this method performs calculation of
www.nicelabel.com
August 2011
the function based on current data and return 0 if successfull or non 0 if not successfull.
Also the IsChecked property is set to true after this call.
Syntax:
Function Check() As Long
IsChecked
Description:
If this property is set to false then the call to method Check performs calculation of the
function based on current data and return 0 if successfull or non 0 if not successfull. Also
this property is set to true after this call.
.
Syntax:
Property IsChecked As Boolean
IsUsed
Description:
Property tells you if this function is used on the label in some other function, element, .
Syntax:
Property IsUsed As Boolean
Level
Description:
If the function is used in some other function then this function will have level 2 while its
parent function will have level 1, this goes in depth depending on how many dependant
function you have. It is needed when calculating the functions because those functions
with higher level need to be calculated first in order that functions with lower level are
calculated properly.
Syntax:
Property Level As Long
Explanation of the parameters:
FilterID
level number
www.nicelabel.com
August 2011
Version
Availability
3,4,5
GetPrinterList
4,5
GetPrinterSpeedListVal
ues
4,5
Properties
Version
Availability
OriginalPrintID
GetPrinterDraknessListValues
Description:
Method retrieves commma separated list of darkness values for specified printer.
Syntax:
Function GetPrinterDarknessListValues(PrinterName As String) As
String
GetPrinterList
Description:
Method retrieves comma separated list of printer names.
Syntax:
Function GetPrintersList() As String
GetPrinterSpeedListValues
Description:
Method retrieves commma separated list of speed values for specified printer.
Syntax:
Function GetPrinterSpeedListValues(PrinterName As String) As
String
OriginalPrintID
Description:
With this property you can set the original print id for the print job before print action. It is
usually used for reprint when you want to set the original print id so that you know from
which print job this print job was reprinted.
www.nicelabel.com
August 2011
Syntax:
OriginalPrintID As String
Version
Availability
Properties
Version
Availability
CharSet
3,4,5
IsRTL
3,4,5
ScaleFactor
3,4,5
CharSet
Description:
Property returns character set for this object.
Syntax:
Property CharSet As Long
IsRTL
Description:
Property returns true if the text is in "right to left" mode.
Syntax:
Property IsRTL As Boolean
ScaleFactor
Description:
Returns font scaling percentage.
Syntax:
Property ScaleFactor As Long
www.nicelabel.com
Version
Properties
Version
August 2011
Availability
Availability
CharSet
3,4,5
IsRTL
3,4,5
CharSet
Description:
Property returns character set for this object.
Syntax:
Property CharSet As Long
IsRTL
Description:
Property returns true if the text is in "right to left" mode.
Syntax:
Property IsRTL As Boolean
Version
Availability
GetFormatChars
4,5
GetSelectedListElement
4,5
Properties
HasPickList
Version
Availability
4,5
GetFormatChars
Description:
Method returns allowed characters for this variable.
Syntax:
Function GetFormatChars() As String
GetSelectedListElement
Description:
If the HasPickList property is true then the variable has a picklist and this method returns
the curently selected item in the picklist.
www.nicelabel.com
August 2011
Syntax:
Function GetSelectedListElement() As String
HasPickList
Description:
Property returns true if the variable is defined as pick list, otherwise returns false.
Syntax:
Property HasPickList As Boolean
2.11
Now with this new ActiveX calls user can retrieve an exact status of the print job.
To use this new functionality you need to know two interfaces and use two
methods that were introduced. The first one prints the label and returns the ID for
the corresponding print job. It is PrintAndGetJobID and it is described in Class
IniceLabel chapter.
The second one GetPrintJob is described below and it is part of the Nlog5
interface
www.nicelabel.com
August 2011
Delphi
You must include Nlog5 in your project:
Version
Availability
Init
GetPrintJob
Properties
Version
Availability
Init
Description:
This method has to be executed before GerPrintJob method
Syntax:
Function Init(OEM As Long, Language As Long) As Long
Parameters:
OEM
www.nicelabel.com
August 2011
GetPrintJob
Description:
This method returns an interface to a PrintJob object. This object contains a member
called Status. This is an integer field containing the detailed status of a print job.
Status is returned as flags, meaning one job can have multiple values for example it can
be in state Printing, Error and Deleting at the same time. For more information refer to
MSDN Spooler statuses.
Statuses and their meaning:
Status Name
StartSpooling
PartiallySpooled
SpoolOk
SpoolFailed
Deleting
Deleted
Error
Paused
Printed
Printing
Restarting
Spooling
Queued
Status Flag
1
2
4
8
16
32
64
128
256
512
1024
2048
4096
Meaning
Print Job is being sent to Spooler
Part of the Print Job is already sent to Spooler
Print Job was sent to Spooler with no errors
Print Job failed while sending it to Spooler
Print Job is marked for deletion in Spooler
Print Job was deleted from Spooler
Print Job is in error state in Spooler
Print Job is paused in Spooler
Print Job was sent to Printer
Print Job is being sent to Printer
Print Job is restarting
Print Job is Spooling
Print Job is Queued
Syntax:
Function GetPrintJob(ID As String) As PrintJob
www.nicelabel.com
August 2011
For more information refer to the NiceForm ActiveX Interface Run mode chapter.
Version
Availability
Design
3,4,5
Login
3,4,5
Run
3,4,5
Properties
FormID
Version
Availability
3,4,5
Design
Description:
Design method opens NiceForm in design mode. There are two available parameters and
therefore four combinations how this method can be used:
1. FormFileName and LabelFileName are specified.
In this case New Form Wizard in NiceForm is started. Wizard takes the specified label
and store the form as the FormFileName parameter.
2. Only LabelFileName is specifed and FormFileName is empty
In this case New Form Wizard in NiceForm is started. Wizard takes the specified label
and store the form as specified manually in the wizard.
3. Only FormFileName is specified and LabelFileName is empty
If provided FormFileName exist then this form is opened, otherwise new form is created
and FormFileName is set as form file name.
4. Both FormFileName and LabelFileName are empty
When you do not specify both FormFileName and LabelFileName then empty form is
opened.
Syntax:
Function Design(FormFileName As String, LabelFileName As String)
As Boolean
www.nicelabel.com
August 2011
Login
Description:
Login method is used, when login is required. As Username you must specify the user,
with which you want to open NiceForm.
If Login is successful the TRUE result is returned.
Syntax:
Function Login(UserName As String) As Boolean
Run
Description:
NiceForm can be started in the run mode. For this you can use Run method. As a
parameter you must provide the file name to the form you wish to run.
If form was ran ok then TRUE result is retured.
Syntax:
Function Run(FormFileName As String) As Boolean
FormID
Description:
FormID property returns the ID of the opened form.
Syntax:
Property FormID As Long
Version
Availability
Login
3,4,5
Open
3,4,5
www.nicelabel.com
Properties
FormID
Version
Availability
3,4,5
August 2011
Open
Description:
To run a form in run mode use the Open method. As a parameter you must provide the
file name to the form you wish to run.
If form was ran ok then TRUE result is retured.
Syntax:
Function Open(FormFileName As String) As Boolean
Login
Description:
Login method is used, when login is required. As Username you must specify the user,
with which you want to open NiceForm.
If Login is successful the TRUE result is returned.
Syntax:
Function Login(UserName As String) As Boolean
FormID
Description:
FormID property returns the ID of the executed form.
Syntax:
Property FormID As Long
www.nicelabel.com
August 2011
3. LabelServices Interface
3.1 Introduction
LabelServices interface allows a 3rd party application to supervise printer statuses.
A service called Label Services (LblServices.EXE) is installed and started on each client after
the Nicelabel Pro installation. Label Services also runs a sub-process NDH.EXE. Both
services are monitoring the local printer and its print job statuses and can report the statuses
back to the labeling application where the statues are continuously updated in the log file.
For NiceLabel SDK Users:
NiceLabel SDK now includes the option of a Printer Status Monitoring Service. This adds
NiceLabel Services (with externals) to the system.
If you stop the Label Service, the functionality will not be available.
To access print queue soap interface application should connect to
http://localhost:6758/wsdl/PrintQueueSOAP
3.2
Class TPQPrinter
Properties
Version
Availability
Attributes
DriverName
HasWebBrowser
Name
NiceStatus
PrintJobList
ShareName
Status
Updated
WebAddress
Attributes
Description:
Specifies the printer attributes.
Type:
www.nicelabel.com
August 2011
Integer
Possible values:
PQ_PRINTER_ATTRIBUTE_NETWORK = $00000001
Printer is a network printer connection.
PQ_PRINTER_ATTRIBUTE_NICE =
$00000002
PQ_PRINTER_ATTRIBUTE_SHARED =
Printer is shared.
$00000004
PQ_PRINTER_ATTRIBUTE_OFFLINE = $00000008
Indicates whether the printer is currently connected.
PQ_PRINTER_ATTRIBUTE_DEFAULT = $00000020
Indicates that the printer is the default printer on the system.
DriverName
Description:
Printer driver name.
Type:
String
HasWebBrowser
Description:
True - printer has built in web server.
False - printer has not built in web server.
Type:
Boolean
Name
Description:
Specifies the printer name.
Type:
String
NiceStatus
Description:
www.nicelabel.com
August 2011
List of string representing advanced errors on printers such as head open, out of
ribbon,.
Type:
TPQNiceStatus
PrintJobList
Description:
List of the currently queued print jobs.
Type:
TPQPrintJobList
ShareName
Description:
Identifies share name of the printer. Only used if PQ_PRINTER_ATTRIBUTE_SHARED is set
for attributes member.
Type:
String
Status
Description:
Specifies the printer status.
Type:
Integer
Possible values:
PQ_PRINTER_STATUS_PAUSED = $00000001
Printer is paused.
PQ_PRINTER_STATUS_PRINTING = $00000002
Printer is currently printed.
PQ_PRINTER_STATUS_ERROR = $00000004
Printer is in error state.
PQ_PRINTER_STATUS_NOT_AVAILABLE = $00000008
The printer is not available for printing.
PQ_PRINTER_ATTRIBUTE_DEFAULT = $00000020
Indicates that the printer is the default printer on the system.
Updated
Description:
www.nicelabel.com
August 2011
3.3
Class TPQPrinterList
Properties
Version
Availability
PrinterArray
PrinterArray
Description:
List of TPQPrinter classes.
Type:
TPQPrinterArray
3.4
Class TPQPrinterJob
Properties
Version
Availability
OEM
ID
Name
Pages
PagesPrinted
Position
PrinterName
Priority
Quantity
Status
Owner
Submitted
www.nicelabel.com
August 2011
OEM
Description:
Has to be 0.
Type:
Integer
ID
Description:
Specifies a print job identifier.
Type:
Integer
Name
Description:
Specifies the name of print job.
Type:
String
Pages
Description:
Specifes number of pages the print job contains.
Type:
Integer
PagesPrinted
Description:
Specifies the number of pages that have printed.
Type:
Integer
Position
Description:
www.nicelabel.com
August 2011
www.nicelabel.com
August 2011
PRINTJOB_STATUS_SPOOL_FAILED = $00000008
There was an error in label production such as wrong barcode value.
PRINTJOB_STATUS_DELETING = $00000010
Print job is being deleting.
PRINTJOB_STATUS_DELETED = $00000020
Print job has been deleted.
PRINTJOB_STATUS_ERROR = $00000040
An error is associated with print job.
PRINTJOB_STATUS_PAUSED = $00000080
Print job is paused.
PRINTJOB_STATUS_PRINTING = $00000100
Print job is printing.
PRINTJOB_STATUS_PRINTED = $00000200
Print job is printed.
PRINTJOB_STATUS_RESTART = $00000400
Print job has been restarted.
PRINTJOB_STATUS_SPOOLING =
Print job is spooling.
PRINTJOB_STATUS_QUEUED =
Print job is queued.
$00000800
$00001000
PRINTJOB_STATUS_MOVED = $00002000
Print job has been moved to another printer.
PRINTJOB_STATUS_PREPARING = $00004000
Language monitor is preparing job to be sent to printer.
PRINTJOB_STATUS_SENDING = $00008000
Language monitor is sending the print job to printer.
PRINTJOB_STATUS_SENT_OK = $00010000
Language monitor successfully sent the print job to the printer.
PRINTJOB_STATUS_SEND_FAILED = $00020000
Language monitor failed at sending print job to printer.
Owner
Description:
Specifies the name of the user that owns the print job.
Type:
String
www.nicelabel.com
August 2011
Submitted
Description:
Specifies the time that this print job was spooled.
Type:
TXSDateTime
Version
Availability
5
PrintJobArray
Description:
List of TPQPrintJob classes.
Type:
TPQPrintJobArray
3.6
Types
Properties
Version
Availability
TPQPrintJobPriority
TPQPrintJobMoveDirection
TPQPrinterArray
TPQNiceStatus
TPQPrintJobArray
TPrinterNames
TPrintJobIds
TPQPrintJobPriority
Description:
Print job priority.
Type:
www.nicelabel.com
August 2011
Type:
Enum:(pjmvup, pjmvDown)
TPQPrinterArray
Description:
List of TPQPrinter classes.
Type:
Array of TPQPrinter
TPQNiceStatus
Description:
List of advanced printer.
Type:
Array of String
TPQPrintJobArray
Description:
List of TPQPrintJob classes.
Type:
Array of TPQPrintJob
TPrinterNames
Description:
List of printer names.
Type:
Array of String
www.nicelabel.com
August 2011
TPrintJobIds
Description:
List of print job identifiers.
Type:
Array of Integer
3.7
Methods
Methods
Version
Availability
ChangePrintJobPosition
ChangePrintJobPriority
DeleteAllPrintJobs
DeletePrintJobs
GetPrinters
GetPrintersInErrorState
GetPrinterInfo
GetPrintJobs
GetPrinterNames
GetPrinterJobsCount
GetSpecifiiedPrinters
GetSpecifiiedPrintersInErrorState
MovePrintJobs
PausePrintJobs
PausePrinters
ProcessJob
RenamePrinter
RestartPrintJobs
SharePrinter
UsePrintersOffline
UsePrintersOnline
www.nicelabel.com
August 2011
ChangePrintJobPosition
Description:
Moves print jobs one position up or down in queue list.
Syntax:
procedure ChangePrintJobsPosition(const APrintJobIDs:
TPrintJobIds; AMoveDirection: TPQPrintJobMoveDirection)
Parameters:
APrintJobIDs
Print job ids list. Only the print jobs specified in this list will be
used.
AMoveDirection
Set this to pjmvUp to move it one position up or set it to pjmvDown to
move it one position down
ChangePrintJobPriority
Description:
Change the priority of specified print jobs. Print job with higher priority will be printed
before the ones with lower priority no matter the position in the queue.
Syntax:
procedure ChangePrintJobsPriority(const APrintJobIDs:
TPrintJobIds; APriority: TPQPrintJobPriority)
Parameters:
APrintJobIDs
Print job ids list. Only the print jobs specified in this list will be
used.
APriority
Possible values are: pjpHigh, pjpNormal, pjpLow. Default priority is
pjpLow.
DeleteAllPrintJobs
Description:
Delete all print jobs currently in queue for the specified printers.
Syntax:
procedure DeleteAllPrintJobs(const APrinterNames: TPrinterNames)
Parameters:
APrinterNames
www.nicelabel.com
August 2011
Printer names list. Only the printers specified in this list will be
used.
DeletePrintJobs
Description:
Deletes specified print jobs.
Syntax:
procedure DeletePrintJobs(const APrintJobIDs: TPrintJobIds)
Parameters:
APrintJobIDs
Print job ids list. Only the print jobs specified in this list will be
used
GetPrinters
Description:
Retrieves all installed printers. Note that this function does not retrieve the printers that
are connected from other machines, it retrieves only locally installed printers.
Syntax:
function GetPrinters(const ALastUpdate: TDateTime; var AAllPrinterNames:
WideString; const ANicePrintersOnly: Boolean): TPQPrinterList)
Parameters:
ALastUpdate
If not 0 then it retrieves only the printers that were modified after the
time specified in ALastUpdate. For example if ALastUpdate is 12:00 and
printer was modified at 11:55 then this printer will not be added to the
printer list.
AAllPrinterNames
Returns names of all installed printers separated by comma.
ANicePrintersOnly
Set this to TRUE to specify that only the printers that were installed using nice drivers should be returned.
GetPrintersInErrorState
Description:
Returns printers that meet the following conditions:
- printers status is ERROR
- printer have job(s) in queue and it is paused or offline
www.nicelabel.com
August 2011
Syntax:
function GetPrintersInErrorState(): TPQPrinterList
GetPrinterInfo
Description:
Returns printers that meet the following conditions:
- printers status is ERROR
- printer have job(s) in queue and it is paused or offline
Syntax:
function GetPrinterInfo(const APrinterName: WideString; out
ASpoolerStatus: Integer; out APrinterStatus: TPQNiceStatus): Boolean
Parameters:
APrinterName
Name of printer for which info should be retrieved..
ASpoolerStatus
Current status of the printer as seen in the spooler.
APrinterStatus
List of string representing advanced printer errors.
GetPrintJobs
Description:
Returns print jobs for specified printers.
Syntax:
function GetPrintJobs(const ALastUpdate: TDateTime; const APrinterNames:
TPrinterNames; var AAllPrintJobIDs: WideString): TPQPrintJobList
Parameters:
ALastUpdate
If not 0 then it returns only the print jobs that were modified after the
time specified.
APrinterNames
Comma separated string of printer names for which print jobs should be
returned.
AAllPrintJobIDs
Return ids of all print jobs for specified printers, separated by comma.
www.nicelabel.com
August 2011
GetPrinterNames
Description:
Retreives all installed printer names .
Syntax:
function GetPrinterNames():WideString
GetPrinJobsCount
Description:
Returns count of all print jobs for all printers.
Syntax:
function GetPrinterJobsCount(): WideString
GetSpecifiedPrinters
Description:
Returns count of all print jobs for specified printers.
Syntax:
function GetSpecifiedPrinters(var APrinterNames: WideString):
TPQPrinterList
Parameters:
APrinterNames
Comma separated string of printer names for which print jobs should be
returned.
GetSpecifiedPrintersErrorState
Description:
Returns for specified printers that meet the following conditions:
- printers status is ERROR
- printer have job(s) in queue and it is paused or offline
www.nicelabel.com
August 2011
Syntax:
function GetSpecifiedPrintersInErrorState(var APrinterNames: WideString):
TPQPrinterList
Parameters:
APrinterNames
Comma separated string of printer names for which print jobs should be
returned.
MovePrintJobs
Description:
Moves print jobs to another printer.
Syntax:
function MovePrintJobs(const APrintJobIDs: TPrintJobIds; APrinterName:
WideString): Boolean
Parameters:
APrinteJobIDs
Print job ids list. Only the print jobs specified in this list will be
used.
APrinterName
Name of printer to which print jobs should be moved.
MovePrintJobsEx
Description:
Moves print jobs to another printer and returns list of generated
errors in TMoveErrors array of TMoveError(class TRemoteable)
Syntax:
function MovePrintJobsEx(const APrintJobIDs: TPrintJobIds; APrinterName:
WideString): TMoveErrors
Parameters:
APrinteJobIDs
Print job ids list. Only the print jobs specified in this list will be
used.
APrinterName
Name of printer to which print jobs should be moved.
www.nicelabel.com
August 2011
PausePrintJobs
Description:
Pauses / resumes specified print jobs.
Syntax:
procedure PausePrintJobs(const APrintJobIDs: TPrintJobIds; APause:
Boolean)
Parameters:
APrinteJobIDs
Print job ids list. Only the print jobs specified in this list will be
used.
APause
If TRUE print jobs will be paused else they will be resumed.
PausePrinters
Description:
Pauses / resumes specified printers.
Syntax:
procedure PausePrinters(const APrinterNames: TPrinterNames; APause:
Boolean)
Parameters:
APrinterNames
Printer names list. Only the printers specified in this list will be
used.
APause
If TRUE printers will be paused else they will be resumed.
ProcessJob
Description:
Generates JOB File for specified OEM
Syntax:
function ProcessJob(const AOEM: Integer; const AJobContents: WideString):
Boolean
www.nicelabel.com
August 2011
Parameters:
AOEM
OEM value, use 0 for NiceLabel.
AJobContents
JOB file contents.
RenamePrinter
Description:
Renames specified printer.
Syntax:
procedure RenamePrinter(const APrinterName: WideString; ANewPrinterName:
WideString)
Parameters:
APrinterName
Existing printer name.
ANewPrinterName
New printer name
RestartPrintJobs
Description:
Restarts print jobs. This means that the spooler will resend whole
job again.
Syntax:
procedure RestartPrintJobs (AprintJobIDs: array of Integer)
Parameters:
APrintJObIDs
Print job ids list. Only the print jobs specified in this list will be
used.
SharePrinter
Description:
Sets/Removes share mode for the specified printer.
www.nicelabel.com
August 2011
Syntax:
procedure SharePrinter(const APrinterName: WideString; const AShare:
Boolean; const AShareName: WideString)
Parameters:
APrinterName
Name of the printer that will be shared.
AShare
If TRUE printer will be shared, else shared flag will be removed.
AShareName
Name displayed to the remote computers that will connect to this printer.
UsePrintersOfflLine
Description:
Sets OffLine mode for specified printers.
Syntax:
procedure UsePrintersOffline(const APrinterNames: TPrinterNames)
Parameters:
APrinterName
Name of the printer that will be shared.
UsePrintersOnLine
Description:
Sets OnLine mode for specified printers.
Syntax:
procedure UsePrintersOnline(const APrinterNames: TPrinterNames)
Parameters:
APrinterName
Name of the printer that will be shared.
www.nicelabel.com
August 2011
4. DDE Communication
4.1 Introduction
To create the DDE communication, the client application must use the following DDE
parameters:
Service = NiceLabel4
Topic = LINE or JOB
When you are using the JOB topic, the content is the name of the command file that must
be run. When you are using the LINE topic, the content is one of the NiceLabel
commands.
When you want to use DDE communication to control NiceLabel, it is probably best, when
the user doesn't know for the background running of this application. For this purpose you
can use this command parameter:
NICE5.EXE <label_name> /s
The parameter s (silent) prevents NiceLabel from being visible on the screen. It will run in
a minimized form.
4.2.2 DDEExecute
Description:
DDEExecute command executes a command on your label. For list of available
commands please see NiceCommands chapter of this manual.
Syntax:
DDEExecute Channel Command
4.2.3 DDETerminate
Description:
DDETerminate command terminates a link between NiceLabel and your application.
www.nicelabel.com
August 2011
Syntax:
DDETerminate Channel
4.3 NiceCommands
Printing with NiceLabel can accomplished automatically. There are several methods for
automation. The first method is with the use of command files (JOB file), which is used
with the Automatic print command from the File menu or directly from the shell.
Another way is with the help of any other Windows application, which enables DDE
communication between the applications.
In both methods, the same commands may be used. When you are using the automatic
print, the commands must be written one per line in the command file (JOB file). With
DDE communication, the commands are sent through the DDE channel.
All NiceCommands are presented in four main groups:
COMMON
FILE
PRINTING
DATABASE
4.3.1 COMMON
SET
Description:
Name is the name of the variable defined on the label. If the variable isn't on the label, an
error will occur. Step and Quantity_of_repetition are optional parameters. These
parameters specify the increment of the variable and the number of the labels before
change.
If variable value contains space characters or commas, you have to enclose the text in
quotation marks.
Syntax:
SET name = value_of_the_variable, [,step[,
quantity_of_repetition]]
www.nicelabel.com
August 2011
COMMENT
Description:
When developing program code or scripts it is very wise to well document your
commands. This will help you decode what the script really performs, when you will look
at the code after some time.
Use semicolon (;) on the beginning of the line. Everything following it will be treated as
script comment and will not be processed by NiceLabel.
Syntax:
;
LOGIN
Description:
Performs login procedure into NiceLabel program. This is necessary when login into
NiceLabel is required.
NOTE. This is DDE command and cannot be used in .JOB files.
Syntax:
LOGIN <username>
RETURN
Description:
This command returns to the NiceLabel program after printing.
Syntax:
Return
QUIT
Description:
This command stops the NiceLabel program after printing. The application is closed.
Syntax:
Quit
MESSAGEBOX
Description:
Print the message. The second parameter represents the title of the message dialog box.
www.nicelabel.com
August 2011
If variable value contains space characters or commas, you have to enclose the text in
quotation marks (e.g. MESSAGEBOX "Insert labels in printer", Warning).
Syntax:
MESSAGEBOX message , caption
OEMTOANSI
Description:
This command works in conjunction with command SET. It puts the text that follows the
command SET in proper codepage, so that variable is assigned the proper value.
Use it to put the values following SET command to the proper codepage, so correct
values will be transferred to NiceLabel at print time.
Syntax:
OEMTOANSI ON|OFF
IGNOREERROR
Description:
This command enables/disables ignoring of an error, that occurs during command file
processing. If ignored, the command file will continue to be executed after wrong value for
variable is set for example.
Syntax:
IGNOREERROR ON|OFF
TEXTQUALIFIER
Description:
This command sets the data delimiter for SET command to the specified character.
Syntax:
TEXTQUALIFIER <<character>>
www.nicelabel.com
August 2011
4.3.2 FILE
CREATEFILE
Description:
This command lets you create the file with the contents NiceLabel.
The purpose of creating or deleting files is that the client application knows when will be
printing stopped.
The example of usage is printing from the file. First the application prepares variable data
for the labels into particular file. Now NiceLabel is activated and printing starts. To inform
application, that the printing process is finished, file with data could be deleted at the end.
This could be a signal to application, that new "job" could be started.
See also:
DELETEFILE
Syntax:
CREATEFILE <name_of_the_file>
DELETEFILE
Description:
This command deletes the file.
See also:
CREATEFILE
Syntax:
DELETEFILE <name_of_the_file>
LABEL
Description:
The LABEL command opens the working label. If the label is already opened, the program
will use this instance. It is recommended to write the full path name along with the file
name. When printername parameter is provided, label is opened for that printer.
Note, if the variable value contains space characters or commas, you will need to enclose
the whole path in quotation marks (e.g. LABEL "C:\Program
Files\EuroPlus\Labels\sample3.lbl").
If you use the LABEL command with NiceWatch running in service mode, use the UNC
quotation instead of the mapped drives (e.g. LABEL "\\SERVER\MY
LABELS\LABEL.LBL" instead of "G:\MY LABELS\LABEL.LBL").
Syntax:
www.nicelabel.com
August 2011
4.3.3 PRINTING
PRINT
Description:
The Print command starts the form or label printing. The first parameter is the print
quantity of the labels; it can be a number, or one of following words:
VARIABLE
UNLIMITED
The first parameter means printing on the base of the variable quantity (one of the
variables sets the quantity), the second one means unlimited printing (printing from the
whole database file for example).
Second parameter in the command represents the number of the labels you want to omit
before first printed label on the page. The parameter can be used when the part of the
www.nicelabel.com
August 2011
page is already printed. The rest of the unused labels on the page can be printed with the
help of this parameter.
Syntax:
PRINT quantity[, skip]
PORT
Description:
This command overrides the printer's port name. Next PRINT command will print to the
port specified.
Usually this command is used to print the label to a file. In this case you must specify
name of file in parameter port_name before using the PRINT command.
Syntax:
PORT <port_name>
PRINTER
Description:
Normally the PRINT command prints the label using the printer specified in the label file.
With this command you can override the printer and print the labels using different printer.
If printer name contains space characters, you have to enclose it in quotation marks.
For printer_name always use the system printer name as is displayed in the status line
in the NiceLabel Pro application. System printer names are usually the same as the
printer names in Printers folder from Control Panel. They differ only when you are using
network-connected printers, when you should use "\\server\share" syntax and not a printer
friendly name.
Syntax:
PRINTER <printer_name>
PRINTJOBNAME
Description:
Specifies the print job name that will be used in print manager when using PRINT
command. After printing the name is returned in normal state.
If variable value contains space characters or commas, you have to enclose the text in
quotation marks (e.g. PRINTJOBNAME "Label for printing").
Syntax:
PRINTJOBNAME <job_name>
www.nicelabel.com
August 2011
SESSIONSTART
Description:
All three commands(SessionStart, SessionPrint, SessionEnd) are used
together. If ordinary command SessionPrint is used, every time a complete data
stream for printer is sent. If you want to join multiple Print commands into one data
stream, you can use the command SessionStart followed with any number of
SessionPrint commands and in the end use the command SessionEnd. The stream
is not closed until the command SessionEnd occurs. These commands offer a way of
optimal printing through NiceCommands and it is not necessary to generate a complete
data stream for each print session.
See also:
SESSIONPRINT
SESSIONEND
SESSIONPRINT
Description:
SESSIONPRINT quantity [, skip]
You send the data stream to printer using this function. You can use multiple
SessionPrint commands one after another and join them in single data stream. The
stream is not closed until the command SessionEnd occurs. The meaning of quantity
and skip parameters is the same as with Nice Command PRINT.
See also:
PRINT
SESSIONSTART
SESSIONEND
SESSIONEND
Description:
The function closes data stream.
See also:
SESSIONSTART
SESSIONPRINT
SETPRINTPARAM
Description:
This command allows you to set advanced print parameters before printing.
Currently supported PARAMNAME are:
www.nicelabel.com
August 2011
PAPERBIN: Use it to specify from which tray the paper should be used.
If the printer is equipped with more than just one paper / label tray, you can control which
is used for printing. The name of the tray should be acquired from the printer driver.
PRINTSPEED: Use this parameter to specify printing speed. The value for parameter
varies from one printer to the other. Consult printer's manuals for numbers.
PRINTDARKNESS: Use this parameter to specify printing darkness / contrast. The value
for parameter varies from one printer to the other. Consult printer's manuals for numbers.
PRINTOFFSETX: Use this parameter to specify left offset for all printing objects. The
value for parameter must be numeric, positive or negative, in pixels
PRINTOFFSETY: Use this parameter to specify top offset for all printing objects. The
value for parameter must be numeric, positive or negative, in pixels
Syntax:
SETPRINTPARAM <paramname> = <value>
4.3.4 DATABASE
SETDATABASE
Description:
Value
Description
database_name
value
The name of the new table that should be used as data source
This command allows you to use some other database with the label file and not the one
that was connected to the label file at design time.
This other database will only be used when printing labels, the label file will remain intact
with connection to the original database.
See also:
SETTABLE
Syntax:
SETDATABASE <database_name> = <value>
www.nicelabel.com
August 2011
SETTABLE
Description:
Value
Description
table_name
value
The name of the new table that should be used as data source
This command allows you to use some other table with the label file and not the one that
was connected to the label file at design time.
This other database table will only be used when printing labels, the label file will remain
intact with connection to the original table.
The new database table should be of the same type as original table. For example, you
cannot change the table from dBase to Paradox. The structure of new table has to be
identical to the original one.
You can use table from the database that is already connected to the label or from some
entirely different database.
See also:
SETDATABASE
Syntax:
SETTABLE <table_name> = <value>
www.nicelabel.com
August 2011
5. Programming Samples
5.1 DDE
DDE programming samples for Microsoft Excel, Microsoft Word are included in the
Nicelabel Integration Documents and Samples package which is a part Nicelabel 5
distribution CD.
createObject (NiceLabel5)
LabelID = niceApp.LabelOpen("sample3.lbl")
Success = niceApp.LabelSetVar(LabelID, "Bar Code", "22", 0, 0)
Success = niceApp.LabelPrint(LabelID, 1) ' Print 1 label
Success = niceApp.LabelClose(LabelID)
nice.Quit
createObject (NiceLabel5)
LabelID = niceApp.LabelOpen("sample3.lbl")
www.nicelabel.com
August 2011
SLOW:
Description:
This is a faster option than the previous one but it is still slow. Now the object NiceLabel is
created just once for the whole print process. This speeds us the response times and
labels are printed faster. But every time the label is printed, it is also immediately closed.
When the next print of the same label is required, it must be re-opened. The operation
takes some time.
Syntax:
createObject (NiceLabel5)
LabelID = niceApp.LabelOpen("sample3.lbl")
Success = niceApp.LabelSetVar(LabelID, "Bar Code", "11", 0, 0)
Success = niceApp.LabelPrint(LabelID, 1) ' Print 1 label
Success = niceApp.LabelClose(LabelID)
LabelID = niceApp.LabelOpen("sample3.lbl")
Success = niceApp.LabelSetVar(LabelID, "Bar Code", "22", 0, 0)
Success = niceApp.LabelPrint(LabelID, 1) ' Print 1 label
Success = niceApp.LabelClose(LabelID)
LabelID = niceApp.LabelOpen("sample3.lbl")
Success = niceApp.LabelSetVar(LabelID, "Bar Code", "33",
0, 0)
Success = niceApp.LabelPrint(LabelID, 1) ' Print 1 label
Success = niceApp.LabelClose(LabelID)
nice.Quit
FAST:
Description:
This is one of the fastest options. NiceLabel software is started only once. The label is
also opened only once and then just left opened in the NiceLabel software. When
additional label printout is required, the already opened label will be used again.
Syntax:
LabelID = niceApp.LabelOpen("sample3.lbl")
www.nicelabel.com
August 2011
Success = niceApp.LabelClose(LabelID)
FASTEST:
Description:
In this case the label opening and closing procedures are performed only once.
Additionally the LabelSessionPrint command is used. The main reason is the advantage
in speed compared to the common LabelPrint command. The printing actions are defined
within a LabelSessionStart and LabelSessionEnd commands. Any number of
LabelSessionPrint commands can be used. The labels are cached in the computer
memory and they are processed and printed at the same time, when the
LabelSessionEnd command is encountered. There is no delay in the label printing as all
labels are sent in one batch job. SessionPrint works for one label at a time, so you cannot
change the printed label during on print session.
See also:
LabelSessionStart
Syntax:
LabelID = niceApp.LabelOpen("sample3.lbl")
niceApp. LabelSessionStart(LabelID)
niceApp. LabelSessionEnd(LabelID)
Success = niceApp.LabelClose(LabelID)
www.nicelabel.com
August 2011
Label file
You have to prepare a label file that will be printed from ASP page. You can use
NiceLabel Pro label editor for this task. The labels can be fixed or with variable values. If
you have variable object on the label, they are always linked to some variables.
The variables will need to be filled with some values before the printing can occur. Here is
where your ASP file comes in. You need to know the names of the variables that are
defined on the label so you can set their values. In the sample ASP script we use the
variables Name, SurName, Address and Phone.
ASP file
ASP file can be created in any editor that is intended for such operations. ASP file is a text
file with the programming commands that ASP web server can understand and execute.
ASP file is actually a HTML formatted file enriched with the ASP capabilities. The web
page using ASP is no longer static page, but is an output of the ASP program.
When writing the ASP code, you are using the same ActiveX interface to connect to
NiceLabel software as you would use when programming the application in Visual Basic,
Delphi, C++ and similar development environments.
Sample of the source code can be found in the next paragraph.
Sample ASP file
Here is a sample source code for the ASP web page.
It connects to the label file NiceLabel.lbl, sets the values for the variables as the user has
entered and prints one copy of the label to the default printer.
<%@ Language = VBScript %>
<% Option Explicit %>
<HTML>
<HEAD>
<TITLE>NiceLabel using ASP</TITLE>
www.nicelabel.com
August 2011
</HEAD>
</FORM>
<HR>
<%
Dim ID, Result, Nice
ID = Nice.LabelOpen("G:\tmp\ASP\NiceLabel.lbl")
Result = Nice.LabelSetVar(ID, "Name", Request.form("fname"), -9999, -9999)
Result = Nice.LabelSetVar(ID, "SurName", Request.form("lname"), -9999, -9999)
Result = Nice.LabelSetVar(ID, "Address", Request.form("address"), -9999, -9999)
Result = Nice.LabelSetVar(ID, "Phone", Request.form("phone"), -9999, -9999)
Result = Nice.LabelPrint(ID, 1)
Nice.Quit
%>
</BODY>
</HTML>
Complete ASP sample files are installed together with the installation of NiceLabel
software. The location for the ASP sample is the folder "..\EuroPlus\NiceLabel
5\Samples\Integration".
www.nicelabel.com
August 2011
Permissions
To successfully use NiceLabel integrated to ASP web page you must correctly set the
access permissions on the web server. To set or check the web server permissions run
the utility "DCOMCNFG" on the computer running the web server.
1. Expand the Component Services, Computers, My Computer, DCOM Config.
2. Locate NiceLabel in the list of applications with DCOM interface.
3. Right-click it then open its properties.
4. Go to Identity tab and select the option "The interactive user."
5. Go to Security tab ane select the option "Customize" for Launch and Activation
Persmissions. Click the button Edit.
6. Select the users that are allowed to run NiceLabel software from the ASP website.
These are not external users connecting to the web server, but Windows system
users that can run NiceLabel software.
Printing
Label printing through ASP-enabled web server can be performed on all printer drivers
that are installed on the server computer. By selecting different ports in the printer drivers,
you can redirect printing to different locations.
Those printer drivers can be redirected to the following locations.
If you want to print labels to the client computer you have to redirect printer driver on
the server to the client printer port. The printer driver must be installed on the server
and you have to make sure that the port the printer is using points to the client
computer. Usually the client shares its printer port as (\\server\share), where "server"
is the name of the client computer and "share" is the shared name of the port on the
client.
The port in the printer driver must be redirected to the printers IP address. In this case
the printer has its own network interface card with the IP number and the port number.
You need to be familiar with both numbers to correctly set up the network port
properties in the printer driver.
5.5 ASP.NET
NiceLabel can be used also in the ASP.NET environment almost on the same way as
regular ASP. Basically the only difference is that the local ASP user, which is created
when ASP.NET environment is installed, has sufficient permissions to run NiceLabel.
To achieve this you have to set the permissions for that user.
www.nicelabel.com
August 2011
Sample VBSCript
Here is a sample script.
VBscript function below sets Prompt variable value to 100.
Method Variables of class Label is used to access VarableList class. With method FindByname
class Var is accessed, variable Prompt located and SetValue method sets value 100 to variable
Prompt
a = 100
Result = label.variables.findbyname("Prompt").setvalue(a)
www.nicelabel.com
August 2011
6. FAQ
6.1 How to choose different printer for label printing
not the one than is selected in the label?
There are two ways how to open the label and work with the NiceLabel ActiveX interface.
If you decide to use Basic method then you will have a label ID and you can set printer
with LabelSetPrinter command.
Status = oNice.LabelSetPrinter(LabelID, "SATO CL408e")
The other method is to open the label in Advanced mode. In this case you have opened
an interface to the label and all label properties are stored in one object. You have to
change the PrinterName property to the desired printer name.
Status = oLabel.PrinterName = SATO CL408e
6.2 How to close the label, if you do not have Label ID?
If you do not have the Label ID then you have opened the label in the Advanced mode.
You do not have the label ID but you have the interface the label. You have to use the
proper command for label close as is available in the Advanced method.
You have to close the application with the Quit method and set the variable to nothing.
oNice.Quit
Set oNice = Nothing
www.nicelabel.com
August 2011
www.nicelabel.com
August 2011
7. Glossary
ActiveX Controls
Automation
Client/Server
architecture
Compound
Documents
www.nicelabel.com
August 2011
DLL
Property
Object
Component Model
www.nicelabel.com
August 2011
8. Contacts
http://www.nicelabel.com/Contact
www.nicelabel.com