i dont know what you mean with "qualified name"
but you can display the value of a tagged value.
print("#TAG:condition#");
where condition is the name of the tag you want to display.
you can although check the value of tagged values.
if(HasTag("horizontal","true")) {
...
}
if the element has a tagged value with the name horizontal and the value == true then...
Stao