Advertisement
SirRufo

ipropgs

Apr 12th, 2016
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.94 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <codetemplate version="1.0.0" xmlns="http://schemas.borland.com/Delphi/2005/codetemplates">
  3.     <template name="ipropgs" invoke="auto">
  4.         <description>
  5.             Erstellt eine Interface-Eigenschaftsdeklaration mit Abruf- und Zuweisungsmethoden (Getter/Setter)
  6.         </description>
  7.         <author>
  8.             Sir Rufo
  9.         </author>
  10.         <point name="name">
  11.             <text>
  12.                 Name
  13.             </text>
  14.             <hint>
  15.                 Der Eigenschaftsname
  16.             </hint>
  17.         </point>
  18.         <point name="type">
  19.             <text>
  20.                 type
  21.             </text>
  22.             <hint>
  23.                 Typ der Eigenschaft
  24.             </hint>
  25.         </point>
  26.         <code language="Delphi" delimiter="|"><![CDATA[
  27. function Get|name|: |type|;
  28. procedure Set|name|( const Value: |type| );
  29. property |name|: |type| read Get|name| write Set|name|;|end|
  30. ]]>
  31.         </code>
  32.     </template>
  33. </codetemplate>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement