| ZVON > Graphotron > Graphotron VCG |
| Intro / Search / ZVON |
| | graphotron | daVinci | >> vcg << | dot | tutorial | download | about | |
| Namespace: | http://zvon.org/graphotron/vcg |
| Element: | textmode |
| Description: | specifies the adjustment of the text within the border of a node. The possibilities are center, left_justify and right_justify. |
| Values: | center, left_justify, right_justify |

|
XML Source
<source> <AAA>center</AAA> <BBB>left justify</BBB> <CCC>right justify</CCC> </source> |
Graphotron Source
<graphotron xmlns:vcg="http://zvon.org/graphotron/vcg" xmlns="http://zvon.org/graphotron" > <vertex match="/*/AAA"> <name select="."/> <vcg:width>150</vcg:width> <vcg:textmode>center</vcg:textmode> </vertex> <vertex match="/*/BBB"> <name select="."/> <vcg:width>150</vcg:width> <vcg:textmode>left_justify</vcg:textmode> </vertex> <vertex match="/*/CCC"> <name select="."/> <vcg:width>150</vcg:width> <vcg:textmode>right_justify</vcg:textmode> </vertex> </graphotron> |