RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Registry.TRegKeyInfo Record

TRegKeyInfo is a type used by the GetRegKeyInfo method of TRegistery.

Pascal
TRegKeyInfo = record
  NumSubKeys: Integer;
  MaxSubKeyLen: Integer;
  NumValues: Integer;
  MaxValueLen: Integer;
  MaxDataLen: Integer;
  FileTime: TFileTime;
end;
C++
struct TRegKeyInfo {
  int NumSubKeys;
  int MaxSubKeyLen;
  int NumValues;
  int MaxValueLen;
  int MaxDataLen;
  TFileTime FileTime;
};

Registry

TRegKeyInfo is a type used by the GetRegKeyInfo method of TRegistery to return information about the current key:

Note: Number of subkeys
Note: Longest subkey name length, in characters
Note: Number of data values
Note: Longest data-value name length
Note: Longest data-value length
Note: Time of last write to the key
 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!