Design
clx.txt
Associated article: Borland's CLX Component Framework
Tags: Design
Published source code accompanying the article by Ray Lischner in which he discusses CLX, a component framework for cross-platform development from Borland Software that debuted in Kylix and Linux. It is also available for Windows in Delphi 6.
Borland's CLX Component Framework
by Ray Lischner
Listing One
type
TPrettyInPink = class(TComponent)
private
FColor: TColor;
procedure SetColor(NewColor: TColor);
...
published
property Color: TColor read FColor write SetColor;
...
Listing Two
<html>
<head>
<title>Environment ...


