Site icon Python GUI

Learn About DelphiVCL.Persistent

featuredimage2 4

DelphiVCL.Persistent or TPersistent is the ancestor for all objects that have assignment and streaming capabilities. TPersistent encapsulates the behavior common to all objects that can be assigned to other objects, and that can read and write their properties to and from a form file (.xfm or .dfm file). 

For this purpose, DelphiVCL.Persistent introduces methods that can be overridden to:

Do not create instances of DelphiVCL.Persistent. Use DelphiVCL.Persistent as a base class when declaring objects that are not components, but that need to be saved to a stream or have their properties assigned to other objects.

Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Persistent using dir() command:

[crayon-6633fcbc0430d202095848/]

See the responses in our Windows command prompt:

You can also read short informations about the DelphiVCL.Persistent using the print() command:

[crayon-6633fcbc0431b611062512/]

See the responses in our Windows command prompt:

 

Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.

Exit mobile version