Description
Source de la nouvelle form
This is a virtual method. Descendant form creators can override to return
a different set of source code or to add special comments to the beginning or
end of file. The source code format should be in a form similar to
sBasicFormSource, above. This source should use the four format strings
below:
%0:s Name of unit being created (e.g., "Unit1").
%1:s Name of form being created (e.g., "Form1").
%2:s Name of form's ancestor class (e.g, "TMyCustomForm")
%3:s Name of unit containing the ancestor form.
Note: If you override this method and use the Format command to format the
string, be aware that Format has an internal limitation of 1024 bytes. If
your generated code exceeds this length, you should break it up into smaller
segments and concatenate them together once formatted.
|