lyxvision.staticline

TStaticLine — horizontale oder vertikale Trennlinie zur visuellen Strukturierung von Dialogen und Fenstern. Zeichnet eine durchgezogene Linie mit konfigurierbarem Zeichen.

lyxvision · lyxvision.view · lyxvision.statictext


Verwendung

import lyxvision.staticline;

// Horizontale Trennlinie (Breite 60)
var hLine: TStaticLine := TStaticLineNew(dlg, 2, 10, 60, true);
TGroupInsert(dlg, hLine);

// Vertikale Trennlinie (Höhe 15)
var vLine: TStaticLine := TStaticLineNew(dlg, 40, 2, 15, false);
TGroupInsert(dlg, vLine);


Funktionen

Signatur Sichtbarkeit Beschreibung
TStaticLineNew(parent: TGroup, x: int64, y: int64, length: int64, horizontal: bool): TStaticLine pub Erzeugt Trennlinie (horizontal: true = waagrecht, false = senkrecht)
TStaticLineSetChar(sl: TStaticLine, ch: int64): void pub Setzt Linienzeichen (Standard: ─ horizontal, │ vertikal)
TStaticLineSetColor(sl: TStaticLine, fg: int64, bg: int64): void pub Setzt Linienfarbe

Letzte Aktualisierung: 2026-05-22