r3macsli

r3macsli

Class

real/gadget/r3macsli.h

Library

r3gad

Description:

Macro slider class

See Also

oops/r3slider.h

Super Class

r3Slider

R3CLID_SLIDER

JavaScript

r3Macroslider

Class Identifier

R3CLID_MACROSLIDER - 1476

Methods

,

Attributes

MacroString, InterpreterClid,

Registration

int R3RegisterMacroSliderClass(R3APP *app);

R3MSM_

Method

Identifier

R3MSM_

JavaScript

obj.();

Description

MacroString

Attribute

MacroString

Identifier

R3MSA_MacroString

JavaScript type

String

C type

char*

Description

named macro, or NULL

Syntax


jsobj.SetMacroString(value);
value = jsobj.GetMacroString();


char* value = ...;
R3SetAttrs(r3obj, R3MSA_MacroString, value, R3TAG_END);
char* value;
R3GetAttrs(r3obj, R3MSA_MacroString, &value, R3TAG_END);

InterpreterClid

Attribute

InterpreterClid

Identifier

R3MSA_InterpreterClid

JavaScript type

Integer

C type

R3INT

Description

interpreter to be used, if NULL user macro is assumed

Syntax


jsobj.SetInterpreterClid(value);
value = jsobj.GetInterpreterClid();


R3INT value = ...;
R3SetAttrs(r3obj, R3MSA_InterpreterClid, value, R3TAG_END);
R3INT value;
R3GetAttrs(r3obj, R3MSA_InterpreterClid, &value, R3TAG_END);