Pascal Doc

IShape Interface

Inherits: IDrawable

Interface für geometrische Formen

Declaration

160 IShape = interface(IDrawable)
161 (**! @brief Berechnet die Fläche *)
162 function Area: Double;
163
164 (**! @brief Name der Form *)
165 property Name: string
166 read FName (**! @brief Liefert den Namen *)
167 write FName (**! @brief Setzt den Namen *);
168 end;
Definition at Line: 160 of file: test1.pas

Inheritance Diagram

IShape

Dependency Diagram

IShape

Methods

function Area: Double
Interface für geometrische Formen

Properties

property Name: string read FName write FName
Name der Form

Detailed Description

The IShape interface.

Member Function Documentation

function IShape.Area: Double

Interface für geometrische Formen

Property Documentation

property Name: string
    read FName 
    write FName
          

Name der Form

Read
Liefert den Namen
Write
Setzt den Namen