Skip to content

TBLFontTable

A read only data that represents a font table or its sub-table.

Definition

Unit: Blend2D

type TBLFontTable = record ... end;

Properties

Name Description
Data Pointer to the beginning of the data.
IsEmpty Whether the table is empty (has no content).
Size Size of Data in bytes.

Methods

Name Description
Reset(Pointer, NativeInt)
Reset

Property Descriptions

Data

Pointer to the beginning of the data.

property Data: Pointer read FData

Type: Pointer


IsEmpty

Whether the table is empty (has no content).

property IsEmpty: Boolean read GetIsEmpty

Type: Boolean


Size

Size of Data in bytes.

property Size: NativeInt read GetSize

Type: NativeInt


Method Descriptions

Reset(Pointer, NativeInt)

procedure Reset(const AData: Pointer; const ASize: NativeInt); overload; inline

Parameters

AData: Pointer

ASize: NativeInt


Reset

procedure Reset; overload; inline