DescriptiveLabel QML Type

This is a descriptive label which uses the plasma theme. More...

Import Statement: import org.kde.plasma.extras
Inherits:

Label

Properties

Detailed Description

The characteristics of the text will be automatically set according to the plasma theme. Use this components for less important additional data to show in a user interface.

Example usage:

import org.kde.plasma.extras as PlasmaExtras
[...]
Column {
    PlasmaComponents.Label { text: "Firefox" }
    PlasmaExtras.DescriptiveLabel { text: "Web Browser"}
  [...]
}

See PlasmaComponents Label and primitive QML Text element API for additional properties, methods and signals.

Property Documentation

active : bool

* If a user can interact with this item, for example in a ListView delegate, this * property should be set to true when the label is being interacted with. * * The default is false.