oscP5 / OscMessage / get( )

name
get ( )
description
get a value at a specific position in the osc message. the get method returns an OscArgument from which the value can be parsed into the right format. e.g. to parse an int from the first argument in the osc message, use theOscMessage.get(0).intValue(); 
Syntax
get(theIndex);
parameters
theIndexint 


Returns
OscArgument
Usage
Web & Application
Related