This resource can help you explore the macro-related features and functions of CorelDRAW® and
Corel®PHO
develop comm
This guide contains the following sections:
• Understanding automation — introduces you to the concepts of automation and macros, and to the macroprogramming formats that are supported by CorelDRAW and Corel PHOTO-PAINT
• Getting started with macros — provides an overview of the macro-related tools and features of
CorelDRAW and Corel PHOTO-PAINT
• Creating macros — describes how to write, record, run, and debug macros
• Making macros user-friendly — demonstrates how to enhance the usability of macros through dialog
boxes, toolbar buttons, user interaction, and documentation
• Organizing and deploying macros — shows you how to organize and deploy the macros you create
• Understanding the CorelDRAW object model — explains the most important features and functions of
the CorelDRAW object model
Also included is a glossary, which defines many of the key terms used in this documentation.
This section contains the following topics:
• About this documentation
• About additional resources
•About Corel
TO-PAINT™. An understanding of these features and
ercial solutions that integrate with the product.
functions can help you automate tasks or
Most of the code examples provided in this documentation are written in VBA.
About this documentation
This documentation assumes that the reader has experience with at least one procedural programming language,
such as BASIC, Microsoft® Visual Basic® (VB), C, C++, Java™, Pascal, Cobol, or Fortran.
This documentation does not describe the basics of procedural programming (such as functions, conditional
branching, and looping). Therefore, before using this documentation, non-programmers are strongly advised to
learn basic programming in a language such as Microsoft® Visual Basic® for Applications (VBA).
Most of the code examples provided in this documentation are written in VBA.
CorelDRAW Graphics Suite X5 Macro Programming Guide1
For more detailed instruction on the VB programming environment and on VBA, see Microsoft Visual
Basic Help, which is available from the Help menu in the Macro Editor.
For a more basic introduction to macros, please see the topic “Working with macros” in the main Help
file for CorelDRAW or Corel PHOTO-PAINT. You can access the main Help from within an application
by clicking Help ` Help topics.
The documentation conventions followed in this guide are explained in the following table.
Wherever you see thisYou’ll find
A note — describes required conditions for performing a
procedure or presents other essential information
A tip — describes helpful information such as shortcuts,
alternate methods, or benefits that are related to a
procedure
bold textThe name of a control or other element on the user
interface
<text in italics and between angle brackets>A placeholder for user-specified information, such as a path
or filename
monospace text
For more information about macros
A reference to coding
CorelDRAW Graphics Suite X5 provides additional resources with helpful information about macros.
Macro documentation for CorelDRAW Graphics Suite X5 is installed to the following location (where X: is the
drive where the software is installed):
X:\Program Files\Corel\CorelDRAW Graphics Suite X5\Data
These additional resources are described in the following table.
ResourceDescription and filename
Macro Help for CorelDRAWProvides comprehensive information about the
CorelDRAW object model and the macro-related features
and functions of the application
draw_om.chm
Macro Help for Corel PHOTO-PAINTProvides comprehensive information about the
Corel PHOTO-PAINT object model and the macrorelated features and functions of the application
pp_om.chm
Object-model diagram for CorelDRAWProvides a hierarchical representation of the CorelDRAW
object model
CorelDRAW Object Model Diagram.pdf
Introduction2
ResourceDescription and filename
Object-model diagram for Corel PHOTO-PAINTProvides a hierarchical representation of the
Corel PHOTO-PAINT object model
Corel PHOTO-PAINT Object Model Diagram.pdf
For a more basic introduction to macros, please see the topic “Working with macros” in the main Help
file for CorelDRAW or Corel PHOTO-PAINT. You can access the main Help from within an application
by clicking Help ` Help topics.
You can submit any comments or suggestions about the macro documentation by using the contact information
provided at www.corel.com/contact.
About additional resources
CorelDRAW Graphics Suite X5 provides resources with helpful information about the software.
For comprehensive information about the features in CorelDRAW Graphics Suite X5, you can consult the user
guide or the Help.
By default, the user guide is installed to the following location (where X: is the drive where the software is
installed):
X:\Program Files\Corel\CorelDRAW Graphics Suite X5\Languages\<language>\Help
You can access the Help from within CorelDRAW or Corel PHOTO-PAINT by clicking Help ` Help topics.
For more information about the software
For more information about CorelDRAW Graphics Suite X5, see the following online resources.
ResourceDescription and URL
CorelDRAW Graphics Suite X5 Web siteProvides the latest news, tips and tricks, and information
about upgrades
www.corel.com/coreldraw
Corel® Support Services Web siteProvides prompt and accurate information about product
features, specifications, pricing, availability, services, and
technical support
www.corel.com/support
Corel® Knowledge Base™Provides a repository of articles written by the Corel
Technical Support Services team in response to questions
by users
www.corel.com/knowledgebase
Introduction3
ResourceDescription and URL
CorelDRAW online communityProvides interaction with other users through sharing
experiences, asking questions, and receiving help and
suggestions
www.coreldraw.com
You can submit any comments or suggestions about CorelDRAW Graphics Suite by using the contact
information provided at www.corel.com/contact.
About Corel
Corel is one of the world’s top software companies, with more than 100 million active users in over 75 countries.
We develop software that helps people express their ideas and share their stories in more exciting, creative, and
persuasive ways. Through the years, we’ve built a reputation for delivering innovative, trusted products that are
easy to learn and use, helping people achieve new levels of productivity. The industry has responded with
hundreds of awards for software innovation, design, and value.
Our award-winning product portfolio includes some of the world’s most widely recognized and popular software
brands, including CorelDRAW® Graphics Suite, Corel® Painter™, Corel DESIGNER® Technical Suite,
Corel® PaintShop Photo™ Pro, Corel® VideoStudio®, Corel® WinDVD®, Corel® WordPerfect® Office,
WinZip®, and the recently released Corel® Digital Studio™ 2010. Our global headquarters are in Ottawa,
Canada, with major offices in the United States, United Kingdom, Germany, China, Taiwan, and Japan.
Introduction4
Understanding automation
Before you begin to work with macros, you need to understand the concept of automation. This section provides
basic information about automation and about the macro-programming formats that are supported by
CorelDRAW and Corel PHOTO-PAINT.
This section contains the following topics:
• What is automation?
• Which automation environments are supported?
• What are the main elements of automation?
• How is automation coding structured?
What is automation?
Many actions that you perform in CorelDRAW and Corel PHOTO-PAINT can be combined with other, related
actions into a single automated solution. Automating repetitive tasks saves time, reduces effort, and lets you
perform operations that are too complex to perform manually.
Automation can be used by programmers and nonprogrammers alike.
This documentation does not teach programming skills to nonprogrammers; rather, it helps experienced
programmers develop useful solutions within CorelDRAW and Corel PHOTO-PAINT. If you are not a
programmer, you may want to refer to other programming-related resources before continuing to read
this documentation.
What is a macro?
Most macros are created to automate a series of tasks within an application. The simplest meaning of the term
“macro” is the recording of a group of related actions that can be played back automatically, in sequence,
whenever you need to perform them. Macros consist of instructions that are written in a programming language,
and some programming languages provide access to additional, more advanced, actions that cannot be recorded.
For the purposes of this documentation, a macro refers to a coded solution that performs tasks in the
application by automating functions and subroutines (see “How are functions and subroutines built?” on
page 16).
CorelDRAW Graphics Suite X5 Macro Programming Guide5
Although you can record a sequence of actions in CorelDRAW and Corel PHOTO-PAINT, the real power of
automation is that you can add conditions and looping mechanisms to a recording. As an example, let’s consider
a simple macro that applies a red fill and a 1-point outline to a selected shape. By adding a condition and a
looping mechanism to the code, you can produce a macro that seeks out each selected shape and applies only the
fill to text shapes and only the outline to all other shape types.
After you create a macro, you can ensure that it has the desired outcome by setpping through its code one line a
a time, or “debugging” it. When you are happy with the macro, you can keep it for future use and even share it
with others.
Which sample macros are available?
CorelDRAW Graphics Suite X5 includes sample VBA macros, which supply additional functionality,
demonstrate automation in the suite, and provide sample code.
The following sample VBA macros are included for CorelDRAW:
• Calendar wizard (CalendarWizard.gms) — generates customized calendars. You can choose the date range,
layout, font, color, language, and many other options. You can also add holidays and moon phases.
•File converter (FileConverter.gms) — converts a vector or bitmap to a specified vector or bitmap format.
You can choose export parameters by using dialog boxes associated with particular filters. You can also save
each page as a separate file and set various page properties, such as size, orientation, and background color.
The following file formats are supported: AI, BMP, CDR, CGM, CMX, CPT, DSF, DXF, EPS, GIF, JPEG,
PCT, PNG, PPF, SVG, SWF, TIF, WMF, and WPG.
The following sample VBA macro is included for Corel PHOTO-PAINT:
• HTML slide show creator (Slideshow.gms) — generates an HTML slide show from the images you specify.
Open files can be added, ordered, and published as a series of HTML files, each of which displays one image
and provides navigation buttons. You can create a title, alternate text, and a name for each slide. You can also
choose a location and a name for the delineation folder; select the image folder; and specify notes, a caption, a
URL, and more.
Which automation environments are supported?
For CorelDRAW versions 6 through 9, the only method of automating tasks was using the Corel SCRIPT™
language. Solution developers used Corel SCRIPT to create intelligent mini-applications for drawing shapes,
repositioning and resizing shapes, opening and closing documents, and setting styles within CorelDRAW.
Although the Corel SCRIPT language was useful for automating basic tasks, a more flexible and powerful
solution became necessary. For version 10, CorelDRAW was enhanced with the
Microsoft Visual Basic for Applications (VBA) engine, which handled behind-the-scenes automation. The
addition of VBA made CorelDRAW immediately accessible to millions of VBA and Microsoft Visual Basic (VB)
developers around the world. Since then, VBA has been included in every version of CorelDRAW Graphics Suite.
More recently, CorelDRAW Graphics Suite has included Microsoft® Visual Studio® Tools for Applications
(VSTA), the successor to VBA. CorelDRAW X5 and Corel PHOTO-PAINT X5 supports VBA version 6.4 and
VSTA version 2.0.
Although CorelDRAW no longer includes the Corel SCRIPT editor, it does include the Corel SCRIPT
run-time engine. Therefore, you can easily migrate scripts that were written for earlier versions of
Understanding automation6
CorelDRAW and to later versions of the software. For information on using Corel SCRIPT with
CorelDRAW, see “Working with scripts” in the main Help file for CorelDRAW (draw.chm).
In Corel PHOTO-PAINT, you can automate tasks by using VBA or VSTA to create a macro, or by using
Corel SCRIPT to create a script. A macro is the better choice if you want to write the code that is required
to carry out the task (by using VBA or VSTA), while a script is the better choice if you want to record
the steps that are required to carry out the task (by using Corel SCRIPT). For information on using
Corel SCRIPT with Corel PHOTO-PAINT, see “Working with scripts” in the main Help file for
Corel PHOTO-PAINT (corelpp.chm).
The combination of VBA and VSTA with CorelDRAW Graphics Suite provides a platform for developing
powerful corporate graphical solutions, such as automated ticket generators, customized calendars, and batch file
processors. These applications can also be used to optimize your workflow. For example, when creating company
letterhead, you can add a page layout on the fly. You can also customize some of the built-in functionality of the
software, such as the creation, alignment, or transformation of objects
VBA and VSTA each provide their own fully integrated development environment (IDE), with contextual popup lists, syntax highlighting, line-by-line debugging, and visual designer windows. These features are
particularly helpful to inexperienced developers.
For more information on VBA and VSTA, see the following sections:
• What is VBA?
•What is VSTA?
What is VBA?
Microsoft Visual Basic for Applications (VBA) is a built-in programming environment that can be used to
automate repetitive functions and create intelligent solutions in CorelDRAW and Corel PHOTO-PAINT. VBA
is a subset of the Microsoft Visual Basic (VB) object-driven programming environment. Usually, VBA is
integrated into another application to customize functionality within that application.
VBA is both a language and an editor. The VBA language cannot be used without its editor, and the VBA editor
is the only utility in which VBA code can be edited or VBA programs can be run.
The VBA language is an event-driven programming language. In other words, it is used to write code that
produces a response to an action, such as clicking a button or choosing an option from a list box. When the
action occurs, the appropriate event is called, and the code for that event is executed. Events can be simple or
complex. For instance, you can code a single line that displays a message box or write an entire procedure that
interacts with a database.
With traditional procedural programming (or “object-driven programming”), the program starts at the
first line and executes one line at a time. VB provides an example of an object-driven programming
environment.
Most of the code examples provided in this documentation are written in VBA.
The VBA editor, called the “Macro Editor” (formerly the “Visual Basic Editor”) in CorelDRAW and
Corel PHOTO-PAINT, is an integrated development environment (IDE) that lets you manipulate the objects
that are exposed by the object model of the application. To help you code macros, the Macro Editor provides
context-sensitive Help for all the object-model elements that are available to you.
Understanding automation7
VBA is an in-process automation controller. In other words, VBA can be used to control the features of
CorelDRAW and Corel PHOTO-PAINT that can be automated, and VBA runs efficiently by bypassing the
interprocess synchronization mechanisms. However, the automation that the in-process VBA can access can also
be accessed by the following:
• applications that are developed in programming languages (such as VB, Visual C++,
Windows® Script Host, and C++) that can be used to develop OLE clients
• the VBA engines of other applications
VBA provides a set of tools for customizing the graphical user interface of CorelDRAW and Corel PHOTOPAINT. These tools let you process and present data efficiently and effectively. Advantages of using VBA with
CorelDRAW and Corel PHOTO-PAINT include the following:
• familiarity of the VB language
• rapid application development (RAD) IDE
• fast run-time performance of the resulting integrated solutions
• extensible forms package that supports ActiveX® controls for creating user interfaces
• access to the full Windows® application programming interface (API) and the underlying file system
• connectivity to corporate data
• integration with other software that is based on component object models (COMs)
VBA lets you customize an application to suit your needs, or even integrate it with another VBA-enabled
application by referencing the object-model components of the second application. Although VBA was
developed by Microsoft and is built into almost all its desktop applications (including Microsoft Office),
Microsoft licenses the technology to other companies, including Corel Corporation (in
CorelDRAW Graphics Suite, Corel DESIGNER® Technical Suite, and Corel® WordPerfect® Office),
Autodesk, Inc. (in AutoCAD®), and IntelliCAD Technology Consortium (in IntelliCAD®). For this reason,
CorelDRAW Graphics Suite X5 is compatible with a wide array of applications that support VBA. However, the
CorelDRAW Graphics Suite X5 engine can also control applications that do not support VBA. Consequently,
you can build solutions in CorelDRAW and Corel PHOTO-PAINT that access databases, word processors,
specialized content editors, XML documents, and more.
For a complete list of applications that support VBA, see the Microsoft Web site.
CorelDRAW Graphics Suite X5 includes VBA version 6.4.
How does VBA differ from VB and VBScript?
The VB programming system is an advanced set of programming tools that provides advanced functionality and
components for the Windows operating system and other Windows-based programs. For example, unlike VBA
or VBScript, VB lets you create application extensions (DLL files) and stand-alone executable programs (EXE
files). (The programs that you create with VBA must run inside the host application.)
VB is a “visual”version of the BASIC programming language — that is, it provides visual cues within the editor.
As a result, VB is an easy language to learn. In addition, Microsoft has greatly enhanced the original BASIC
language, so that VB is both powerful and fast (although not as powerful as Java or C++, nor as fast as C).
VBA is a subset of the VB programming language, and it uses the programming structure of VB to manipulate
the object-model elements that are exposed by an application. The manipulation of these objects results in small
Understanding automation8
packets of code procedures within the application. These code procedures and resulting projects are called “addins.”
VBScript (sometimes referred to as Microsoft Visual Basic, Scripting Edition) is also a subset of the VB
programming language. VBScript is a Web-based HTML document scripting language.
How does VBA differ from Java and JavaScript?
VBA is similar to Java and JavaScript® in that it is a high-level, procedural programming language with full
garbage collection and very little memory-pointer support. (For more information, see “How are memory
pointers used, and how is memory allocated?” on page 17.) In addition, code that is developed in VBA, much
like code developed in Java and JavaScript, supports on-demand compilation and can be executed without being
compiled.
VBA is also similar to JavaScript in that it cannot be executed as a stand-alone application. JavaScript is
embedded within Web pages as a mechanism for manipulating the document object model (DOM) of the Web
browser. Likewise, VBA programs are executed inside a host environment (in this case, CorelDRAW or
Corel PHOTO-PAINT) to manipulate the object model of the host.
Most VBA applications can be compiled to p-code to make them run more quickly, although the difference is
hardly noticeable because of the sophistication of today’s computer hardware. Similar compilation is possible
with Java, but not with JavaScript.
Finally, whereas VBA uses a single equals sign (
a single equals sign (
= ) for assignment and two equals signs ( == ) for Boolean comparison. (For more
= ) for both comparison and assignment, Java and JavaScript use
information, see “How are Boolean comparisons and assignments used?” on page 18.)
How does VBA differ from C and C++?
Like C and C++, VB uses functions. In VB, functions can be used to return a value, but subroutines cannot be
used in that way. However, functions are used in C and C++, regardless of whether you want to return a value.
(For more information, see “How are functions and subroutines built?” on page 16.)
VBA allocates and frees memory transparently. In C and C++, however, the developer is responsible for most
memory management. As a result, using strings in VBA is even simpler than using the CString class in C++.
Finally, whereas VBA uses a single equals sign (
single equals sign (
= ) for assignment and two equals signs ( == ) for Boolean comparison. (For more
= ) for both comparison and assignment, C and C++ use a
information, see “How are Boolean comparisons and assignments used?” on page 18.)
How does VBA differ from WSH?
Windows Script Host (WSH)is an out-of-process automation controller that lets you do occasional scripting and
automation of Windows tasks and can be used to control CorelDRAW Graphics Suite. Although WSH is a
useful addition to the Windows operating system, WSH scripts tend to be slow because they must run out of
process, and they cannot be compiled (and must be interpreted as they are executed).
WSH is a host for a number of scripting languages, each of which has its own syntax. However, the standard
language that WSH uses is a macro language that resembles VB, so for standard scripts, the syntax is the same
as in VBA.
Understanding automation9
What is VSTA?
The successor to VBA, Microsoft Visual Studio Tools for Applications (VSTA) is based on
Microsoft Visual Studio 2008. In CorelDRAW Graphics Suite X5, the VSTA feature supports the .NET
framework and enables development in two programming languages: Visual Basic .NET and Visual C#.
Most of the code examples provided in this documentation are written in VBA.
The VSTA Editor in CorelDRAW and Corel PHOTO-PAINT is an integrated development environment (IDE)
that lets you create VSTA solutions for the software.
CorelDRAW Graphics Suite X5 includes VSTA version 2.0.
How does VSTA compare with VBA?
Both VSTA and VBA allow you to create powerful macro solutions. With VSTA, you use the VSTA Editor as an
IDE, and you use Visual Basic .NET or Visual C# as a programming language. With VBA, you use the
Macro Editor as an IDE, and you use VBA as a programming language.
If you want to perform any of the following tasks, you can use either VSTA or VBA:
• customize or extend the features of CorelDRAW Graphics Suite X5
• interact with other applications that use Visual Basic 6 — or with other compatible components that are
external to CorelDRAW Graphics Suite X5
• interact with Web-based services
• customize the IDE with add-ins
• create macro projects — with multi-threading support, if desired
• access macro projects programmatically
• generate macro code dynamically
• store macro code in a pre-compiled format
• hide macro code from other macro authors
• debug macro projects
• create customized user interfaces for macro projects
However, if you want to perform any of the following tasks, you must use VSTA:
• access the .NET framework natively — to support using Managed Add-in Framework (MAF), referencing
.NET assemblies directly, running customized code on the Common Language Runtime (CLR), enforcing
.NET security policies, or creating user interfaces by using .NET WinForms
• fully customize the IDE
• create macro projects that are certified to run on Windows Vista
• create macro projects that support 64-bit processors
• create macro projects that support server-side customizations
• create macro projects that support all data types, including
BigDecimal and Int64
• create macro projects and macro assemblies that persist without the use of structured storage
• open and modify macro projects in Visual Studio
• compile macro projects to DLL assemblies
• run macro projects out of process
Understanding automation10
• run macro projects without causing the host application to stop execution at errors or breakpoints
• isolate macro projects from one another; run macro projects independently, and stop them during runtime
without affecting other running projects
• author macros within managed code
• prevent servers from running customized user interfaces for macro projects
What are the main elements of automation?
If you’ve ever developed object-oriented code in C++, Borland Delphi, or Java, you’re already familiar with
programming-related concepts such as “objects,” “classes,” “properties,” and “methods.” However, let’s
reexamine these terms as they apply to automating CorelDRAW and Corel PHOTO-PAINT.
• What is an object model?
• What is a class?
• What is a collection?
• What is a property?
• What is a method?
• What is an event?
• What is an enumeration?
• What is a constant?
What is an object model?
An object model represents the hierarchy of items (or “objects”) that make up an application and defines the
interrelationships of the objects within that hierarchy. In an object model, each object is a child of another object,
which is a child of yet another object, and so on. Furthermore, each object in an object model is defined by a
property, a method, or an event, or a combination of these items.
Besides providing a high level of structure, an object model also lets you use object types (or “classes”) in various
ways. For example, a Shape object of type “group” is used to contain other Shape objects, each of which is from
type “group” or some other type, such as “rectangle,” “curve,” or “text.”
This high level of organization makes the object model easy to use, yet powerful.
How is an object model used in automation?
Automating CorelDRAW or Corel PHOTO-PAINT is accomplished by using the object model of the
application to access the various objects in a document and make changes to those objects.
In CorelDRAW and Corel PHOTO-PAINT, the Application object represents the top of the object hierarchy:
the program itself. All objects are children or grandchildren (or great-grandchildren, and so on) of the
application.
Starting with the Application object, you can “drill down” through the layers of hierarchy in the object model
until you find the desired, and usually the more specific, object. To reference the desired object, you must use a
standard notation to separate each level of the object hierarchy.
Understanding automation11
As in many object-oriented languages, the CorelDRAW and Corel PHOTO -PAINT automation environment
requires the use of a period or “dot operator” (
. ) to indicate that the object on the right is a member (or child)
An object requires its full hierarchical (or “fully qualified”) reference unless a shortcut is available to it (or unless
it has an implicit or implied meaning). An object shortcut is merely a syntactic replacement for the long-hand
version of an object. For example, the shortcut object
Application.ActiveDocument.ActivePage.ActiveLayer, while the object shortcut ActiveSelection
replaces the long-hand version
Application.ActiveDocument.Selection.
ActiveLayer replaces the long-hand version
For more information on object shortcuts, see “How are object shortcuts used?” on page 22.
What is a class?
A class is the definition or description of an object. A class outlines the properties, methods, and events that
apply to a type of object in an application; it acts as a template for all objects of that type class. To use a
metaphor, the class “car” is a small vehicle with an engine and four wheels.
An object is an instance of a class. To extend the car metaphor, the actual, physical car purchased for the purposes
of driving is an object (that is, an instance of the class “car”).
In the context of CorelDRAW and Corel PHOTO-PAINT, each open document is an instance of the Document
class, each page in the document is an instance of the Page class, and each layer (and each shape on each layer)
are more instances of more classes. For example,
Corel PHOTO-PAINT. However,
ActiveDocument represents an object within that class because it makes
specific reference to one object.
Document represents the Document class in CorelDRAW and
As previously discussed, objects are often made up of other smaller objects. For example, a car contains four
objects of the class “wheel,” two objects of the class “headlight,” and so on. Each of these child objects has the
same properties and methods of its class-type. This parent/child relationship of objects is an important one to
recognize, particularly when referencing an individual object.
Some classes “inherit” features from their parents. For example, in the context of CorelDRAW and
Corel PHOTO-PAINT, the Shape type has many subtypes (or “inherited types”), including Rectangle, Ellipse, Curve, and Te x t . All these subtypes can make use of the basic members of the Shape type, including methods
for moving and transforming the shape and for setting its color. However, the subtypes also have their own
specialist members; for example, a Rectangle can have corner radii, whereas Te x t has an associated Font
property.
What is a collection?
A collection is similar to an array of objects; it is an object that contains a group of objects that are similar in
type. These objects share the same properties, methods, and events, and they are uniquely identified within the
collection by their index number or their name. Collection objects act in the same manner and are always plural.
For example,
However,
Documents represent the Documents collection class in CorelDRAW and Corel PHOTO-PAINT.
Documents.Item (1) references the first Document object in that collection.
Understanding automation12
What is a property?
A property is like an adjective in that it represents an attribute or characteristic quality of an object. Properties
can be returned or set, or they can be read-only.
Most classes have properties. As an illustration, the properties of the class “car” are that it is small, it has an
engine, and it has four wheels. Every instance of the class “car” (that is, every object in that class) also has
properties such as color, speed, and number of seats. Read-only properties are fixed by the design of the class; for
example, the number of wheels or seats does not (usually) vary from car to car. However, other properties can be
changed after the object has been created; for example, the speed of the car can go up and down, and, with a bit
of help, its color can be changed.
In the context of CorelDRAW and Corel PHOTO-PAINT, Document objects have a name, a resolution, and
horizontal and vertical ruler units; individual shapes have outline properties and fill properties, as well as a
position and a rotation factor; and text objects have text properties, which may include the text itself. For
example,
ActiveDocument.Name represents the Name property of a Document object; it specifies the name of
the active document.
What is a method?
A method is like a verb in that it represents an action that can be performed by or on an object. In the example
of a class “car,” the car can be made to go faster and slower, so two methods for the class are “accelerate” and
“decelerate.”
In the context of CorelDRAW and Corel PHOTO-PAINT, documents have methods for creating new pages,
layers have methods for creating new shapes, and shapes have methods for applying transformations and effects.
For example,
document.
ActiveDocument.Close represents the Close method of a Document object; it closes the active
What is an event?
An event is like a noun in that it represents an action that takes place within an object. An event is triggered by
an action, such as a mouse click, a key press, or a system timer. An event can be coded to trigger appropriate
response in its object.
For example, the
ActiveDocument.AfterSave event triggers an action in the Document object after it has
been saved.
What is an enumeration?
An enumeration (also called an “enumerated type”) represents a fixed value in the procedures and functions of
the coding for a macro. Whereas a variable temporarily stores a changing data value, the value of an
enumeration does not change.
What is a constant?
A constant is an instance of an enumeration, and an enumeration groups similar constants together.
For example,
AddinFilterNew.
and
AddinFilter is an enumeration, yet it contains several constants, including AddinFilterNone
Understanding automation13
How is automation coding structured?
Your programming knowledge should help you learn to automate CorelDRAW and Corel PHOTO-PAINT,
regardless of your level of experience with Microsoft Visual Basic for Applications (VBA) or
Microsoft Visual Studio Tools for Applications (VSTA).
This section examines the following topics on the structure and syntax of the VBA language:
• How are variables declared?
• How are functions and subroutines built?
• How are lines ended?
• How are comments included?
• How are memory pointers used, and how is memory allocated?
• How is scope defined?
• How are Boolean comparisons and assignments used?
• How are logical and bitwise operators used?
• How are message boxes and input boxes provided?
• How are objects referenced?
• How are collections referenced?
• How are object shortcuts used?
• How are event handlers provided?
The Macro Editor formats all VBA coding for you (as discussed in “Formatting code automatically” on
page 32). The only way to customize the formatting is to change the size of the indentations.
VBA can be used to create object-oriented classes. However, this function is a feature of the programming
language and is therefore not discussed in detail in this documentation.
How are variables declared?
In VBA, the construction for declaring variables is as follows:
Dim foobar As Integer
The built-in data types are Byte, Boolean, Integer, Long, Single, Double, String, Variant, and several
other less-used types including
Variables can be declared anywhere within the body of a function, or at the top of the current module. However,
it is generally a good idea to declare a variable before it is used; otherwise, the compiler interprets it as a
Variant, and inefficiencies can be incurred at run time.
Booleans take
Long results in True being converted to a value of –1.
False to be 0 and True to be any other value, although converting from a Boolean to a
To get more information about one of the built-in data types, type it in the Code window of the
Macro Editor, select it, and then press F1.
Date, Decimal, and Object.
Understanding automation14
Data structures can be built by using the following VBA syntax:
Public Type fooType
item1 As Integer
item2 As String
End Type
Dim myTypedItem As fooType
The items within a variable declared as type fooType are accessed by using dot notation:
myTypedItem.item1 = 5
How are strings declared?
Using strings is much simpler in VBA than in C. In VBA, strings can be added together, truncated, searched
forwards and backwards, and passed as simple arguments to functions.
To add two strings together in VBA, simply use the concatenation operator (
Dim string1 As String, string2 As String
string2 = string1 & " more text" + " even more text"
& ) or the addition operator ( + ):
In VBA, there are many functions for manipulating strings, including InStr(), Left(), Mid(), Right(),
Len(), and Trim().
How are enumerations declared?
To declare an enumeration in VBA, use the following construction:
Public Enum fooEnum
ItemOne
ItemTwo
ItemThree
End Enum
By default, the first item in an enumerated type is assigned a value of 0.
How are arrays declared?
To declare an array in VBA, use parentheses — that is, the ( and ) symbols:
Dim barArray (4) As Integer
The value defines the index of the last item in the array. Because array indexes are zero-based by default, there
are five elements in the preceding sample array (that is, elements
0 thru 4, inclusive).
Arrays can be resized by using
ReDim. For example, the following VBA code adds an extra element to barArray
but preserves the existing contents of the original five elements:
ReDim Preserve barArray (6)
Upper and lower bounds for an array can be determined at run time by using the functions UBound() and
LBound().
Understanding automation15
Multidimensional arrays can be declared by separating the dimension indexes with commas, as in the following
VBA example:
Dim barArray (4, 3)
How are functions and subroutines built?
VBA uses both functions and subroutines (or “subs”). Functions can be used to return a value, but subs cannot.
In VBA, functions and subs do not need to be declared before they are used, nor before they are defined. In fact,
functions and subs need to be declared only if they actually exist in external system DLLs.
Typical functions in a language such as Java or C++ can be structured as follows:
void foo( string stringItem ) {
// The body of the function goes here
}
double bar( int numItem ) { return 23.2; }
In VBA, however, functions are structured as in the following example:
Public Sub foo (stringItem As String)
' The body of the subroutine goes here
End Sub
Public Function bar (numItem As Integer) As Double bar = 23.2
End Function
To force a function or sub to exit immediately, you can use Exit Function or Exit Sub (respectively).
How are lines ended?
In VBA, each statement must exist on its own line, but no special character is required to denote the end of each
line. (In contrast, many other programming languages use a semicolon to separate individual statements.)
To break a long VBA statement over two or more lines, each of the lines (other than the last line) must end with
an underscore (
newString = fooFunction ("This is a string", _
5, 10, 2)
_ ) preceded by at least one space:
You can combine several statements in a single VBA line by separating them with colons:
a = 1 : b = 2 : c = a + b
A VBA line cannot end with a colon. VBA lines that end with a colon are labels that are used by the Goto
statement.
How are comments included?
Comments in VBA — similarly to in ANSI, C++, and Java — can be created only at the end of a line.
Comments begin with an apostrophe (
' ) and terminate at the end of the line.
Understanding automation16
Each line of a multi-line comment must begin with its own apostrophe in VBA:
a = b ' This is a really interesting piece of code that
' requires so much explanation that I needed to break
' the comment over multiple lines.
To comment out large sections of VBA code, use the following syntax (similarly to in C or C++):
#If 0 Then ' That's a zero, not the letter 'oh'.
' All this code will be ignored by
' the compiler at run time!
#End If
How are memory pointers used, and how is memory allocated?
VBA does not support C-style memory pointers. Memory allocation and garbage collection are automatic and
transparent, just as in Java and JavaScript (and some C++ code).
How are arguments passed?
Most languages, including C++ and Java, pass an argument to a procedure as a copy of the original. If the
original must be passed, then one of two things can happen:
• a memory pointer is passed that directs the procedure to the original argument in memory
• a reference to the original argument is passed
Microsoft Visual Basic (VB) has the same requirements for passing arguments. In VB, passing a copy of the
original argument is called “passing by value” and passing a reference to the original is called “passing by
reference.”
By default, function and subroutine parameters are passed by reference. A reference to the original variable is
passed in the argument of the procedure; changing the value of that argument, in effect, changes the value of the
original variable value as well. In this way, more than one value can be returned from a function or subroutine. To
explicitly annotate the code to indicate that an argument is being passed by reference, you can prefix the
argument with
ByRef.
If you want to prevent a procedure from changing the value of the original variable, you can force the copying of
an argument. To do this in VBA, prefix the argument with
functionality of
ByRef and ByVal is similar to the ability of C and C++ to pass a copy of a variable, or to pass a
ByVal, as shown in the example that follows. The
pointer to the original variable.
Private Sub fooFunc (ByVal int1 As Integer, _
ByRef long1 As Long, _
long2 As Long) ' Passed ByRef by default
In the preceding VBA example, arguments long1 and long2 are both, by default, passed by reference.
Modifying either argument within the body of the function modifies the original variable; however, modifying
int1 does not modify the original because it is a copy of the original.
Understanding automation17
How is scope defined?
You can define the scope of a data type or procedure (or even an object). Data types, functions, and subroutines
(and members of classes) that are declared as private are visible only within that module (or file). By contrast,
functions that are declared as public are visible throughout all the modules; however, you may need to use fully
qualified referencing if the modules are almost out of scope — for example, if you are referencing a function in a
different project.
Unlike C, VBA does not use braces — that is, the
is defined by an opening function or subroutine definition statement (that is,
End statement (that is, End Function or End Sub). Any variables declared within the function are available
{ and } symbols — to define local scope. Local scope in VBA
Function or Sub) and a matching
only within the scope of the function itself.
How are Boolean comparisons and assignments used?
In Microsoft Visual Basic (VB), Boolean comparison and Boolean assignment are both performed by using a
single equals sign (
If a = b Then c = d
By contrast, many other languages use a double equals sign for Boolean comparison and a single equals sign for
Boolean assignment:
if( a == b ) c = d;
The following code, which is valid in C, C++, Java, and JavaScript, is invalid in VBA:
if( ( result = fooBar( ) ) == true )
The preceding example would be written in VBA as the following:
result = fooBar( )
If result = True Then
For other Boolean comparisons, VBA uses the same operators as other languages (except for the operators for “is
equal to” and “is not equal to”). All the Boolean-comparison operators are provided in the following table.
= ):
ComparisonVBA operatorC-style operator
Is equal to
Is not equal to
Is greater than
Is less than
Is greater than or equal to
Is less than or equal to
The result of using a Boolean operator is always either
===
<>!=
>>
<<
>=>=
<=<=
True or False.
Understanding automation18
How are logical and bitwise operators used?
In VBA, logical operations are performed by using the keywords And, Not, Or, Xor, Imp, and Eqv, which perform
the logical operations AND, NOT, OR, Exclusive-OR, logical implication, and logical equivalence (respectively).
These operators also perform Boolean comparisons.
The following code shows a comparison written in C or a similar language:
if( ( a && b ) || ( c && d ) )
This example would be written as follows in VBA:
If ( a And b ) Or ( c And d ) Then
Alternatively, the preceding VBA code could be written in the following full long-hand form:
If ( a And b = True ) Or ( c And d = True ) = True Then
The following table provides a comparison of the four common VBA logical and bitwise operators, and the Cstyle logical and bitwise operators that are used by C, C++, Java, and JavaScript.
In VBA, you can present simple messages to the user by using the MsgBox function:
Dim retval As Long
retval = MsgBox("Click OK if you agree.", _
vbOKCancel, "Easy Message")
If retval = vbOK Then
MsgBox "You clicked OK.", vbOK, "Affirmative"
End If
You can also get strings from the user by using InputBox function:
Dim inText As
inText = InputBox("Input some text:", "type here")
If Len(inText) > 0 Then
MsgBox "You typed the following: " & inText & "."
End If
If the user clicks Cancel, the length of the string returned in inText is zero.
String
For information on creating more complex user interfaces, see “Making macros user-friendly” on page 55.
Understanding automation19
How are objects referenced?
If you want to create a reference to an object so that you can treat that reference like a variable (sh, in the VBA
example for CorelDRAW that follows), you can use the
Dim sh As Shape
Set sh = ActiveSelection.Shapes.Item(1)
After you create this reference, you can treat it as though it were the object itself.
sh.Outline.Color.GrayAssign 35
If the selection is changed while sh is still in scope, sh references the original shape from the old selection and is
unaffected by the new selection. You cannot simply assign the object to the variable as in the following example:
Dim sh As Shape
sh = ActiveSelection.Shapes.Item(1)
To release an object, you must set its reference value to Nothing.
Set sh = Nothing
You can also test whether a variable references a valid object by using the Nothing keyword.
If sh Is Nothing Then MsgBox "sh is de-referenced."
Objects do not need to be explicitly released. In most cases, VB releases the object upon disposal of the variable
when you exit the function or subroutine.
Set keyword.
How are collections referenced?
Many objects are members of collections. A collection is similar to an array, except that it contains objects rather
than values. However, members of collections can be accessed in the same way as arrays. For example, a
collection that is used frequently in CorelDRAW is the collection of shapes on a layer: The object
references either the current layer or the layer that is selected in the CorelDRAW Object Manager docker.
CorelDRAW contains many collections: A document contains pages, a page contains layers, a layer contains
shapes, a curve contains subpaths, a subpath contains segments and nodes, a text range contains lines and words,
a group contains shapes, and the application contains windows. All these collections are handled in the same way
by VBA.
How are the items in a collection referenced?
To reference the shapes on a layer, the collection of shapes for that layer is used: ActiveLayer.Shapes. To
reference the individual shapes in the collection, the
Item() property is used. Here is a VBA example for
CorelDRAW:
Dim sh As Shape
Set sh = ActiveLayer.Shapes.Item(1)
Most elements of a collection start at 1 and increase. For the CorelDRAW collection ActiveLayer.Shapes,
Item(1) is the item at the “top” or “front” of the layer — in other words, it is the item that is in front of all
other shapes. Furthermore, because each item in the
ActiveLayer collection is an object of type Shape, you can
reference any item in VBA merely by appending the appropriate dot-notated member:
Sometimes, individual items have names. If the item you are looking for has an associated name (and you know
what the name is and which collection the item is in), you can use that name to reference the item directly, as in
the following VBA example for CorelDRAW:
Dim sh1 As Shape, sh2 As Shape
Set sh1 = ActiveLayer.CreateRectangle(0, 5, 7, 0)
sh1.Name = "myShape"
Set sh2 = ActiveLayer.Shapes.Item("myShape")
Also, because an item is usually the implied or default member of a collection, it is not strictly required. For this
reason, the last line of the preceding VBA code can be rewritten as follows:
Set sh2 = ActiveLayer.Shapes("myShape")
How are the items in a collection counted?
All collections have a property called Count. This read-only property gives the number of members in the
collection, as in the following VBA example for CorelDRAW:
Dim count As Long
count = ActiveLayer.Shapes.Count
The returned value is not only the number of items in the collection: Because the collection starts from 1, it is
also the index of the last item.
How are the items in a collection parsed?
It is often necessary to parse through the members of a collection to check or change the properties of each item.
By using the
Item() and Count members, it is straightforward to step through a collection of items. With each
iteration, it is possible to test the properties of the current item, or to call its methods. The following VBA code
for CorelDRAW restricts all shapes on the layer to no wider than ten units:
Dim I As Long, count As Long
count = ActiveLayer.Shapes.Count
For I = 1 to count
If ActiveLayer.Shapes.Item(i).SizeWidth > 10 Then
ActiveLayer.Shapes.Item(i).SizeWidth = 10
End If
Next I
There is, however, a more convenient way of parsing a collection in VBA. Instead of using the Count property
and a For-Next loop, this technique uses a For-Each-In loop:
Dim sh As Shape
For Each sh In ActiveLayer.Shapes
If sh.SizeWidth > 10 Then
sh.SizeWidth = 10
End If
Next sh
Understanding automation21
If you want to copy the selection and then parse it later when it is no longer selected, copy the selection into a
ShapeRange object:
Dim sr As ShapeRange
Dim sh As Shape
Set sr = ActiveSelectionRange
For Each sh In sr
' Do something with each shape
Next sh
How are object shortcuts used?
Shortcuts are provided for some frequently accessed objects. Using shortcuts requires less typing, so shortcuts are
easier to use than their longhand versions. (Also, using shortcuts can improve run-time performance because the
compiler does not need to determine every object in a long dot-separated reference.)
For CorelDRAW, a shortcut can be used on its own as a property of the CorelDRAW
Application object. The
following table provides the shortcuts and their long forms for CorelDRAW. (For a description of any item,
please see the “Object Model Reference” section of the CorelDRAW Macros Help file [draw_om.chm].)
ShortcutLong form
ActiveLayerActivePage.ActiveLayer
ActivePageActiveDocument.ActivePage
ActiveSelectionActiveDocument.Selection
ActiveSelectionRangeActiveDocument.SelectionRange
ActiveShapeActiveDocument.Selection.Shapes(1)
ActiveViewActiveWindow.ActiveView
ActiveWindowActiveDocument.ActiveWindow
For Corel PHOTO-PAINT, a shortcut can be used on its own as a property of the Corel PHOTO-PAINT
Application object. The following table provides the shortcuts and their long forms for Corel PHOTO-
PAINT. (For a description of any item, please see the “Object Model Reference” section of the Corel PHOTOPAINT Macros Help file [pp_om.chm].)
ShortcutLong form
ActiveLayerActivePage.ActiveLayer
ActiveWindowActiveDocument.ActiveWindow
For CorelDRAW, the following shortcuts can also be used as members of a given
• ActiveLayer
• ActivePage
• ActiveShape
• ActiveWindow
Understanding automation22
Document object:
For Corel PHOTO-PAINT, the following shortcuts can also be used as members of a given Document object:
• ActiveLayer
• ActiveWindow
For CorelDRAW, the Document object also has the properties Selection and SelectionRange, which let you
get the selection or selection range (respectively) from a specified document regardless of whether that document
is active.
How are event handlers provided?
While running, CorelDRAW and Corel PHOTO-PAINT raise various events to which macros can respond
through the use of event handlers — subroutines with specific, defined names. Each macro project defines its
event handlers in one of the following code modules:
• ThisMacroStorage — for macro projects that are stored in Global Macro Storage (GMS) files
• ThisDocument — for macro projects that are stored in documents
The GlobalMacroStorage object is a virtual object that represents each and all open documents. The
GlobalMacroStorage object has several events that are raised at the time of any event, such as opening,
printing, saving, or closing a document (although the range of events is actually greater than this because each
one has a “before” and “after” event).
To respond to an event, you must provide an event handler — a subroutine in any ThisMacroStorage module
with a specific name for which the application is pre-programmed to search. However, the application does check
all ThisMacroStorage modules in all installed projects; for this reason, you can create an event-driven solution
and distribute it as a single project file just as you would provide any other solution. Each project can have only
one ThisMacroStorage module, and it is automatically created when the project is first created.
In VBA, you can add event handlers to a ThisMacroStorage module by using the Macro Editor. For example, a
CorelDRAW macro solution may need to respond to the closing of a document by logging the closure in a file as
part of a workflow-management system. To respond to the opening of a document, the solution must respond to
the
OpenDocument event for the GlobalMacroStorage class. To create this event handler in VBA, do the
following:
•Open a ThisMacroStorage module for editing in the Macro Editor.
•Next, choose GlobalMacroStorage from the Object list box at the top of the Code window, and then choose
DocumentOpen from the Procedure list box.
The Macro Editor creates a new, empty subroutine called
GlobalMacroStorage_DocumentOpen()— or, if that
subroutine already exists, the Macro Editor places the cursor into it. To then add the name of the opened file to
the log, you need only write some code. To reduce the size of the ThisMacroStorage module, you can assign this
event-logging task to a public subroutine in another module. This technique lets the run-time interpreter more
easily parse all the ThisMacroStorage modules each time an event is raised. The following VBA code illustrates
this example for CorelDRAW:
Private Sub GlobalMacroStorage_OpenDocument(ByVal Doc As Document, _
ByVal FileName As String)
Call LogFileOpen(FileName)
End Sub
Understanding automation23
Here is a small sample of the events available in CorelDRAW:
EventDescription
Start
DocumentNew
DocumentOpen
DocumentBeforeSave
DocumentAfterSave
DocumentBeforePrint
DocumentAfterPrint
SelectionChange
DocumentClose
Quit
Event handlers for frequent events — such as events related to the Shape class — should be as efficient
as possible, to keep the application running as quickly as possible.
Raised when the user starts the application
Raised when a document is created; passes a reference to
the document
Raised when a document is opened; passes a reference to
the document
Raised before a document is saved; passes the file name of
the document as a parameter
Raised after a document is saved; passes the file name of
the document as a parameter
Raised before the Print dialog box is displayed
Raised after a document is printed
Raised when a selection changes
Raised before a document is closed
Raised when the user quits the application
Understanding automation24
Getting started with macros
Now that you understand a bit about automation, you’re ready to get started with macros. This section provides
an overview of the macro-related tools and functionalities of CorelDRAW and Corel PHOTO-PAINT.
This section contains the following topics:
• Setting up the automation feature
• Using the Macros toolbars
• Using the Macro Manager docker
• Using the Add-in Manager
• Using the Macro Editor
•Using the VSTAEditor
Setting up the automation feature
Before you can develop and run macros in CorelDRAW Graphics Suite X5, you may need to set up the
automation features for VBA and VSTA.
When you perform a “typical installation” of CorelDRAW Graphics Suite X5, the VBA and VSTA features are
installed by default. However, you can manually install them if necessary. You can also specify various options for
VBA.
• To install the VBA and VSTA features
• To specify VBA options
To install the VBA and VSTA features
1 Insert the installation disc into your computer.
If the installation wizard does not start automatically, locate and run the Setup.exe file on the installation
disc.
2 Follow the on-screen instructions for modifying the software.
3 On the Features page of the setup, enable the following check boxes in the Utilities list box:
• Visual Basic for Applications 6.4
• Visual Studio Tools for Applications
CorelDRAW Graphics Suite X5 Macro Programming Guide25
In the Utilities list box, enable the Visual Basic for Applications 6.4 and Visual Studio
Tools for Applications check boxes
To specify VBA options
1 Click To o l s `Options.
2 In the Wo rk s pa c e list of categories, click VBA.
3 In the Security area, specify how to control the risk of running malicious macros by clicking Security
options.
If you want to bypass this security feature, enable the Trust all installed GMS modules check box, and then
proceed to step 6.
4 On the Security level page of the Security dialog box, enable one of the following options:
• Very hig h — allows only macros installed in trusted locations to run. All other signed and unsigned
macros are disabled.
• High — allows only signed macros from trusted sources to run. Unsigned macros are automatically
disabled.
• Medium — lets you choose which macros run, even if they are potentially harmful.
• Low (not recommended) — allows all potentially unsafe macros to run. Enable this setting if you have
virus-scanning software installed, or if you check the safety of all documents that you open.
5 On the Trusted publishers page of the Security dialog box, review which macro publishers are trusted.
Click View to display details on the selected macro publisher, or click Remove to delete the selected macro
publisher from the list.
If desired, you can enable or disable the Trust access to Visual Basic project check box for the selected
macro publisher.
6 Disable the Delay load VBA check box if you want to load the VBA feature at start-up.
Getting started with macros26
Loading...
+ 128 hidden pages
You need points to download manuals.
1 point = 1 manual.
You can buy points or you can get point for every manual you upload.