Class TMyClass

Unit

Declaration

type TMyClass = class(TObject)

Description

A simple class.

Source: tests/testcases/ok_source_position.pas (line 20).

Hierarchy

Overview

Fields

Public MyField: Integer;

Methods

Public procedure MyMethod;

Properties

Public property MyProp: Integer read MyField;

Description

Fields

Public MyField: Integer;

A field.

Source: tests/testcases/ok_source_position.pas (line 22).

Methods

Public procedure MyMethod;

A method.

Source: tests/testcases/ok_source_position.pas (line 24).

Properties

Public property MyProp: Integer read MyField;

A property.

Source: tests/testcases/ok_source_position.pas (line 26).