Class TCastleColorRGBPersistent

Unit

Declaration

type TCastleColorRGBPersistent = class(TCastleComponent)

Description

TCastleColorRGB record represented as a TPersistent descendant, to be able to visually edit it (in Lazarus and Delphi visual designer, and Castle Game Engine visual designer) and to serialize it.

Normal user code does not need to deal with this class or it's instances. Instead directly operate on TCastleColorRGB values, which is faster and more natural. TCastleColorRGB are simple records, so they are naturally copied on assignment, and various operators like additions work in a natural way too.

Hierarchy

Overview

Fields

Public InternalGetValue: TGetVector3Event;
Public InternalSetValue: TSetVector3Event;
Public InternalDefaultValue: TCastleColorRGB;

Methods

Protected procedure Loaded; override;
Public constructor Create(const AOwner: TComponent = nil); reintroduce;
Public function HasDefaultValue: Boolean;
Public function PropertySections(const PropertyName: String): TPropertySections; override;

Properties

Public property Value: TCastleColorRGB read GetValue write SetValue;
Published property Red: Single read GetRed write SetRed stored RedIsStored nodefault;
Published property Green: Single read GetGreen write SetGreen stored GreenIsStored nodefault;
Published property Blue: Single read GetBlue write SetBlue stored BlueIsStored nodefault;

Description

Fields

Public InternalGetValue: TGetVector3Event;
 
Public InternalSetValue: TSetVector3Event;
 
Public InternalDefaultValue: TCastleColorRGB;
 

Methods

Protected procedure Loaded; override;
 
Public constructor Create(const AOwner: TComponent = nil); reintroduce;
 
Public function HasDefaultValue: Boolean;
 
Public function PropertySections(const PropertyName: String): TPropertySections; override;
 

Properties

Public property Value: TCastleColorRGB read GetValue write SetValue;
 
Published property Red: Single read GetRed write SetRed stored RedIsStored nodefault;
 
Published property Green: Single read GetGreen write SetGreen stored GreenIsStored nodefault;
 
Published property Blue: Single read GetBlue write SetBlue stored BlueIsStored nodefault;
 

Generated by PasDoc 0.16.0.