<code>

<code> contiene un codice alfabetico derivante da un linguaggio formale, per esempio un linguaggio di programmazione
Modulotagdocs — 22 Documentation Elements
Attributi
lang (linguaggio formale) è il nome che identifica il linguaggio formale nel quale viene espresso il codice
Stato Opzionale
Tipo di dati

<rng:ref name="data.word"/>
data.word
Usato da
Può contenereAmmessi soltanto caratteri di testo
Dichiarazione

<rng:element name="code">
<rng:ref name="att.global.attributes"/>
<rng:optional>
 <rng:attribute name="lang">
  <rng:ref name="data.word"/>
 </rng:attribute>
</rng:optional>
<rng:text/>
</rng:element>
element code { att.global.attributes, attribute lang { data.word }?, text }
Esempio
<code lang="JAVA"> Size fCheckbox1Size = new Size();
fCheckbox1Size.Height = 500;
fCheckbox1Size.Width = 500;
xCheckbox1.setSize(fCheckbox1Size);
</code>