Code templates include commonly used programming statements (such as if, while, and for statements) that you can insert into your source code. While working in the Code editor, press Ctrl+J to display the default code templates or any new ones that you define. Select a code template to be entered in your code file in one of two ways:
Use the scroll bar as necessary and double-click the template to insert it into your code.
Type the name of the template until the characters entered refer to the entry in the list you want to include. Press Enter.
For instance, if you press Ctrl+J, type 損,?and double-click the selected 損rocedure declaration,?the following code will be inserted automatically at the current cursor position:
procedure ();
begin
end; |