name
STAND_ALONE_ELEMENT ( )
import prohtml.*;

void setup(){
  println("HTML_ELEMENT:..." + Conts.HTML_ELEMENT);
  println("STAND_ALONE_ELEMENT:.." + Conts.STAND_ALONE_ELEMENT);
  println("TEXT_ELEMENT:.." + Conts.TEXT_ELEMENT);
  println("LETTER_ELEMENT:.." + Conts.TEXT_ELEMENT);
}
description
STAND_ALONE_ELEMENT is simply a static field containing a string. The sense of STAND_ALONE_ELEMENT is to check if the type of an element of the pageTree is STAND_ALONE_ELEMENT. There are different other types of elements: TEXT_ELEMENT, LETTER_ELEMENT and HTML_ELEMENT. Use these constants to make shure you take the correct methods of an element.
syntax
STAND_ALONE_ELEMENT;
usage
Web & Application
related