Class TBorder
Unit
Declaration
type TBorder = class(TCastleComponent)
Description
Configurable border size for TCastleUserInterface.Border.
Hierarchy
- TObject
- TPersistent
- TComponent
- TCastleComponent
- TBorder
Overview
Fields
OnChange: TNotifyEvent; |
Methods
procedure Assign(Source: TPersistent); override; |
|
function ValueIsStreamed: Boolean; override; |
|
function ToString: String; override; |
|
function PropertySections(const PropertyName: String): TPropertySections; override; |
|
function TotalTop: Single; |
|
function TotalRight: Single; |
|
function TotalBottom: Single; |
|
function TotalLeft: Single; |
|
function TotalWidth: Single; |
|
function TotalHeight: Single; |
|
function Exists: Boolean; |
Properties
property Top: Single read FTop write SetTop default 0 ; |
|
property Right: Single read FRight write SetRight default 0 ; |
|
property Bottom: Single read FBottom write SetBottom default 0 ; |
|
property Left: Single read FLeft write SetLeft default 0 ; |
|
property AllSides: Single read FAllSides write SetAllSides default 0 ; |
Description
Fields
OnChange: TNotifyEvent; |
|
This item has no description. |
Methods
procedure Assign(Source: TPersistent); override; |
|
This item has no description. |
function ValueIsStreamed: Boolean; override; |
|
This item has no description. Showing description inherited from TCastleComponent.ValueIsStreamed.
Whether the current value of this object should be written to the stream. This should be This is used by CastleComponentSerialize, which is used in Castle Game Engine for all serialization. In simple cases, this just says whether the current value of this object equals to some default value. The default implementation of this class returns Descendants that override this to sometimes return The name of this method is consistent with TPropertyEditor.ValueIsStreamed in LCL. |
function ToString: String; override; |
|
This item has no description. |
function PropertySections(const PropertyName: String): TPropertySections; override; |
|
This item has no description. Showing description inherited from TCastleComponent.PropertySections. Section where to show property in the editor. |
function TotalTop: Single; |
|
Total top border (Top + AllSides). |
function TotalRight: Single; |
|
Total right border (Right + AllSides). |
function TotalBottom: Single; |
|
Total bottom border (Bottom + AllSides). |
function TotalLeft: Single; |
|
Total left border (Left + AllSides). |
function TotalWidth: Single; |
|
Total horizontal border (TotalLeft + TotalRight). |
function TotalHeight: Single; |
|
Total vertical border (TotalTop + TotalBottom). |
function Exists: Boolean; |
|
Anything not zero? |
Properties
property Top: Single read FTop write SetTop default 0 ; |
|
This item has no description. |
property Right: Single read FRight write SetRight default 0 ; |
|
This item has no description. |
property Bottom: Single read FBottom write SetBottom default 0 ; |
|
This item has no description. |
property Left: Single read FLeft write SetLeft default 0 ; |
|
This item has no description. |
property AllSides: Single read FAllSides write SetAllSides default 0 ; |
|
This item has no description. |
Generated by PasDoc 0.16.0-snapshot.