Using Delphi autocomplete

40 Views Asked by At

I have an enumeration type:

TParameterType = (CPT_NONE, CPT_INT, CPT_DOUBLE, CPT_STRING, CPT_STREAM);

I selected it and after an unknown action somehow it was automatically pasted like this:

 case Parameter.ParamType of
      CPT_NONE: ;
      CPT_INT: ;
      CPT_DOUBLE: ;
      CPT_STRING: ;
      CPT_STREAM: ;
    end;

How to repeat it?

0

There are 0 best solutions below