textSize

textSize( )

Description
Set a size of  text

Syntax
textSize(x

Parameters
  x        :  size of text

Usages

textSize(70)



Examples in arduino

#include "AppGosu.h"
AppGosu app;

void  setup() {
     app.start();
     app.clearAll();

     app.textSize(30);     
     app.text("ABC", 100, 100);

     app.textSize(70);
     app.text("ABC", 100, 300);
}
void loop() {

}



Examples in other MCU 


printf("textSize(70);");


No comments: