RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Graphics.TResource Record
Pascal
TResource = record
  Next: PResource;
  RefCount: Integer;
  Handle: THandle;
  HashCode: Word;
  case Integer of
    0: (Data: TResData;);
    1: (Font: TFontData;);
    2: (Pen: TPenData;);
    3: (Brush: TBrushData;);
end;
C++
struct TResource {
  PResource Next;
  int RefCount;
  THandle Handle;
  Word HashCode;
  TResData Data;
  TFontData Font;
  TPenData Pen;
  TBrushData Brush;
};

This is record Graphics.TResource.

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!