How to Get property information ?
Answer / Sumit Shrivastav
To get property information of a component at runtime, you can use the Component.GetProperties method or the ObjectInspector. Informations view (Ctrl+I) in the Delphi IDE. Here's an example using GetProperties:
```
var
Properties: TList<TPropertyInfo>;
begin
Properties := TComponent(MyComponent).GetProperties;
end;
| Is This Answer Correct ? | 0 Yes | 0 No |
How to Broadcast a message?
How to do Sorting on Calculated fields ?
How to Debug CORBA clients and servers?
How to print an HTML document from inside of your application?
How is the memory used within an object in delphi?
'Name Conflicting' . what does this error mean?
How to have a TBitBtn component that has a word wrapped caption?
How to Copy contents of a control to the clipboard?
How to use the InterBase Express (IBX) SQL monitor?
How to Print Delphi controls using QuickReports?
How to determine the names of the installed comm ports?
How to Get the time and date in Universal Time ?