Ich brauche ein ein mehrdimensionales array, indem ich die eigenschaften font und color einspeichere.
hier die deklaration:
Delphi-Quellcode:
type
Tcell_attributes = array of array of Record
Font : Tfont;
color : Tcolor;
end;
//...
var ca : Tcell_attributes;
//...
ca[x,y].font := // . . .
Mein Problem: wie kann ich überprüfen ob der wert in ca[x,y].font schon gesetzt ist,
also ob da schon was reingeschrieben wurde -?