Class TMyClass

Unit

Declaration

type TMyClass = class(TObject)

Description

This item has no description.

Hierarchy

Overview

Properties

Public property MyProperty[S: string]: Integer read GetMyProperty;
Public property SelLength: Integer read GetSelLength write SetSelLength;
Public property SelText: string read GetSelText;
Public property KeyboardType: TVirtualKeyboardType read GetKeyboardType write SetKeyboardType default TVirtualKeyboardType.Default;
Public property MyPropertyNoDefault: Single nodefault;
Public property MyPropertyDefaultExpression: Integer default 10 + 20;
Public property MyPropertyStored: Single stored false;
Public property MyPropertyStored2: Single stored GetStored;

Description

Properties

Public property MyProperty[S: string]: Integer read GetMyProperty;

This item has no description.

Public property SelLength: Integer read GetSelLength write SetSelLength;

From https://github.com/pasdoc/pasdoc/issues/174

Public property SelText: string read GetSelText;

This item has no description.

Public property KeyboardType: TVirtualKeyboardType read GetKeyboardType write SetKeyboardType default TVirtualKeyboardType.Default;

This item has no description.

Public property MyPropertyNoDefault: Single nodefault;

This item has no description.

Public property MyPropertyDefaultExpression: Integer default 10 + 20;

This item has no description.

Public property MyPropertyStored: Single stored false;

This item has no description.

Public property MyPropertyStored2: Single stored GetStored;

This item has no description.