Search code examples
classobjectpropertieslazarus

Lazarus: How do I find detailed docs (class info) of objects?


Is there a way to find complete class info of an object in Lazarus. F1 doesn't work.

For example, I want to know the methods, events and properties of TSQLQuery. More specifically, I'm trying to find what constants I can use with the state property.

The docs I've found so far aren't really much help in this context.

I've also tried the menu that says 'object browser' but it simply points to the properites window.


Solution

  • TSQLQuery and its unit sqldb is not documented.

    The state property however is from the base tdataset ancestor of sqlquery, and that IS documented.

    Try typing TDatasetstate or tdataset and press F1