Pascal Doc

TPoint record

Beispiel-Record.

Declaration

83 TPoint = record
84 X: Integer;
85 (**!
86 * @brief give the X position
87 * @details blah blah about X pos field
88 *)
89 Y: Integer; (**! @brief give the Y position *)
90 end;
Definition at Line: 83 of file: test1.pas

Detailed Description

Dieser Record speichert X- und Y-Werte.

Cross References

Used by TPerson.Create
Used by TPerson.Point

Fields

Integer X
give the X position
Integer Y
give the Y position

Field Documentation

X: Integer

blah blah about X pos field

Y: Integer