Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Nebula TitledSeparator

< Back to Nebula Main Page

Introduction

TitledSeparator.png

An enhanced separator, with a title and/or an image.

Usage

The titled separator is composed of a text and optionally an image, initialized by the methods setText() and setImage().

You can change the alignment of the text (left, center, right) by using the method setAlignment(int value) with the following values : SWT.RIGHT, SWT.CENTER and SWT.LEFT.

Finally, you can change the foreground color, the background color and the font by using the setters setForeground(), setBackground() and setFont().

Example

An example called TitledSeparatorSnippet.java is located in the plugin org.eclipse.nebula.widgets.opal.titledseparator.snippets.

This example is also available here : TitledSeparatorSnippet.java

Back to the top