Application.Quit Method

ClosedDescription

Quits BarTender application.

ClosedSyntax

Application.Quit(BtSaveOptions)

Where BtSaveOptions determines whether the open BarTender documents will be saved.

The BtSaveOptions parameter (optional in VB.NET, but required in C#) can be set to any one of the following:

Constant

Value

Description

btPromptSave

0

Will prompt the user to save changes if needed. (default)

btDoNotSaveChanges

1

Do not save any changes.

btSaveChanges

2

Save all changes. Do not prompt the user.

ClosedRequirements

Version

BarTender 6.00 or higher

Edition

Automation, Enterprise Automation

ClosedRemarks

The Quit method quits and exits the BarTender application. All opened documents are either saved or not saved based on the BtSaveOptions constant.

ClosedVB.NET Example

'Declare a BarTender application variable

Dim btApp As BarTender.Application

'Create a new instance of BarTender

btApp = New BarTender.Application

'Set the BarTender application visible

btApp.Visible = True

'End the BarTender process

btApp.Quit(BarTender.BtSaveOptions.btDoNotSaveChanges)

ClosedC# Example

// Declare a BarTender application variable

BarTender.Application btApp;

// Create a new instance of BarTender

btApp = new BarTender.Application();

// Set the BarTender application visible

btApp.Visible = true;

// End the BarTender process

btApp.Quit(BarTender.BtSaveOptions.btDoNotSaveChanges);

Related Topics