home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri Kaikille K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INSTALL / delphi32_exe.Cab / F6972_DELPHI32.DCI next >
INI File  |  2001-05-22  |  2KB  |  134 lines

  1. [arrayd | array declaration (var)]
  2. array[0..|] of ;
  3.  
  4. [arrayc | array declaration (const)]
  5. array[0..|] of = ();
  6.  
  7. [cases | case statement]
  8. case | of
  9.   : ;
  10.   : ;
  11. end;
  12.   
  13. [casee | case statement (with else)]
  14. case | of
  15.   : ;
  16.   : ;
  17. else ;
  18. end;
  19.   
  20. [classf | class declaration (all parts)]
  21. T| = class(T)
  22. private
  23.  
  24. protected
  25.  
  26. public
  27.  
  28. published 
  29.  
  30. end;
  31.  
  32. [classd | class declaration (no parts)]
  33. T| = class(T)
  34.  
  35. end;
  36.  
  37. [classc | class declaration (with Create/Destroy overrides)]
  38. T| = class(T)
  39. private
  40.  
  41. protected
  42.  
  43. public
  44.   constructor Create; override;
  45.   destructor Destroy; override;
  46. published 
  47.  
  48. end;
  49.  
  50. [fors | for (no begin/end)]
  51. for | :=  to  do
  52.  
  53. [forb | for statement]
  54. for | :=  to  do
  55. begin
  56.  
  57. end;
  58.  
  59. [function | function declaration]
  60. function |(): ;
  61. begin
  62.  
  63. end;
  64.  
  65. [ifs | if (no begin/end)]
  66. if | then
  67.  
  68. [ifb | if statement]
  69. if | then
  70. begin
  71.  
  72. end;
  73.  
  74. [ife | if then (no begin/end) else (no begin/end)]
  75. if | then
  76.  
  77. else
  78.  
  79. [ifeb | if then else]
  80. if | then
  81. begin
  82.  
  83. end
  84. else
  85. begin
  86.  
  87. end;
  88.  
  89. [procedure | procedure declaration]
  90. procedure |();
  91. begin
  92.  
  93. end;
  94.  
  95. [trye | try except]
  96. try
  97.   | 
  98. except
  99.  
  100. end;
  101.  
  102. [tryf | try finally]
  103. try
  104.   | 
  105. finally
  106.  
  107. end;
  108.  
  109. [trycf | try finally (with Create/Free)]
  110. |variable := typename.Create; 
  111. try
  112.  
  113. finally
  114.   variable.Free;
  115. end;
  116.  
  117. [whileb | while statement]
  118. while | do
  119. begin
  120.  
  121. end;
  122.  
  123. [whiles | while (no begin)]
  124. while | do
  125.  
  126. [withb | with statement]
  127. with | do
  128. begin
  129.  
  130. end;
  131.  
  132. [withs | with (no begin)]
  133. with | do
  134.