Da fehlt das kleine Wörtchen type
Delphi-Quellcode:
TPDFiumFrame =
class(TFrame)
type // woher soll Delphi sonst wissen, dass Du da eine neue Klasse deklarieren willst?
TPDFPage =
class
Index : Integer;
Handle : HPDFPage;
Top : Double;
Rect : TRect;
Text : HPDFTextPage;
NoText : Boolean;
Visible : Integer;
SelStart : Integer;
SelStop : Integer;
Selection: TArray<TRectD>;
destructor Destroy;
override;
function HasText: Boolean;
function CharIndex(x, y, distance: Integer): Integer;
function CharCount: Integer;
function Select(Start: Integer): Boolean;
function SelectTo(Stop: Integer): Boolean;
function ClearSelection: Boolean;
procedure DrawSelection(
DC, BMP: HDC;
const Blend: TBlendFunction;
const Client: TRect);
end;
private
{ Déclarations privées }