Skip to content

Latest commit

 

History

History
54 lines (44 loc) · 1.19 KB

File metadata and controls

54 lines (44 loc) · 1.19 KB

Rpstr_SetValueReal

Description

Set a real value from the VectorScript value repository.

PROCEDURE Rpstr_SetValueReal(
				name  : STRING;
				value : REAL);
def vs.Rpstr_SetValueReal(name, value):
    return None

Parameters

Name Type Description
name STRING The name of the value.
value REAL Set a value associated with the name in the VectorScript value repository.

Examples

Rpstr_SetValueReal('Example', 1.0);
import vs

# Set a real value from the VectorScript value repository.
name = 'Example'
value = 1.0

vs.Rpstr_SetValueReal(name, value)

See Also

VS Functions: Rpstr_RemoveValues | Rpstr_RemoveValue | Rpstr_GetValueBool | Rpstr_SetValueBool | Rpstr_GetValueInt | Rpstr_SetValueInt | Rpstr_GetValueReal | Rpstr_SetValueReal | Rpstr_GetValueStr | Rpstr_SetValueStr

Version

Availability: from Vectorworks 2012

Category