C4D Validate Components
Contacts
Installation
- Installation using the Boss:
boss install github.com/Code4Delphi/C4D-Validate-Components
- Manual installation: Open your Delphi and add the following folder to your project, under Project > Options > Resource Compiler > Directories and Conditionals > Include file search path
..\C4D-Validate-Components\Src
Quickstart
- Add uses to your system:
uses
C4D.Validate.Components;
- Insert the Custom Attributes on the component declaration you want to validate:
[FieldDisplay('Name')]
[NotEmpty]
[Length(5, 15)]
edtName: TEdit;