PPROPS
Syntax PPROPS name list 
 
Explanation PPROPS is a handy method to store multiple properties into a property list. The second input to PPROPS is a list of property pairs. The first word in the pair is the property, the second item in the pair is the property value for that property. The list must be of even length.

PPROPS is handy for assigning multiple properties to turtles, bitmaps, and controls.

See also GPROP, POPLS, PPROP, and REMPROP.

Examples PPROPS "JOE [SEX MALE AGE 24 ADDRESS [23 OAK STREET]] 
GPROP "JOE "AGE 
Result: 24 
GPROP "JOE "SEX 
Result: MALE 
GPROP "JOE "ADDRESS 
Result: [23 OAK STREET] 

TopIndex