Advertisement
Guest User

proprwf Delphi template

a guest
Feb 15th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.72 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2.  
  3. <codetemplate   xmlns="http://schemas.borland.com/Delphi/2005/codetemplates"
  4.                 version="1.0.0">
  5.     <template name="proprwf" invoke="manual">
  6.         <point name="propname">
  7.             <text>
  8.                 Field
  9.             </text>
  10.             <hint>
  11.                 property name
  12.             </hint>
  13.         </point>
  14.         <point name="type">
  15.             <script language="Delphi">
  16.                 InvokeCodeCompletion;
  17.             </script>
  18.             <text>
  19.                 Integer
  20.             </text>
  21.             <hint>
  22.                 property type
  23.             </hint>
  24.         </point>
  25.         <description>
  26.             property declaration readonly
  27.         </description>
  28.         <code language="Delphi" context="typedecl" delimiter="|">
  29.         <![CDATA[property |propname|: |type| read F|propname| write F|propname|;
  30. ]]>
  31.         </code>
  32.     </template>
  33. </codetemplate>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement