name
Conts
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
This class is for access to different constants. You can use these constants to check which type of element you have.
constructors
Conts();
fields
Represents the type HtmlElement as String.
Represents the type LetterElement as String.
Represents the type StandAloneElement as String.
Represents the type TextElement as String.
usage
Web & Application
related