DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.CustomEdit

featuredimage2 4

DelphiVCL.CustomEdit is the base class from which all edit-box and memo controls are derived.

DelphiVCL.CustomEdit or TCustomEdit encapsulates the behavior common to all components for editing text by introducing methods and properties that provide:

Basic text editing functions such as selecting the text, modifying selected text, and case conversions.

Ability to respond to changes in the contents of the text.

Access control of the text for making it read-only or introducing a password character to hide the actual value.

Do not create instances of DelphiVCL.CustomEdit. Use TCustomEdit as a base class when declaring control objects that permit the user to enter or modify text. Properties and methods of TCustomEdit provide basic behavior that descendant classes inherit as well as behavior that components can override to customize their behavior.

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

See the responses in our Windows command prompt:

0dir 8640344

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

See the responses in our Windows command prompt:

0print 4001383

 

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

Related posts
AndroidCodeDelphiLearn PythonProjectsPythonPython GUI

How to Create a BMI App With Delphi Ecosystem And Python

AndroidCodeDelphiDelphiFMXLearn PythonProjectsPythonPython GUI

How to Create a Stopwatch/Timer Android App With Delphi For Python?

AndroidCodeDelphiDelphiFMXLearn PythonProjectsPythonPython GUI

How to Create a Unit Converter Android App Using Python GUI

AndroidDelphiDelphiFMXLearn PythonPythonPython GUI

How To Create A Python Quiz Application With DelphiFMX?

Leave a Reply

Your email address will not be published. Required fields are marked *