Since Checked is a property, accessed by private Methods, you cannot use (Method-)Pointers for that, but the
RTTI might help you:
Delphi-Quellcode:
uses
{...} TypInfo;
//...
if GetPropValue(YourCheckbox, 'Checked') then
ShowMessage('Checkbox is Checked');
Note: Although Delphi itself is not, the
RTTI-Stuff in the .NET-Version of the
VCL is case-sensitive
greetz
Mike