Module SCA_PropertyActuator
|
|
1
2
3 from SCA_IActuator import *
4
6 """
7 Property Actuator
8 """
10 """
11 Set the property on which to operate.
12
13 If there is no property of this name, the call is ignored.
14
15 @type prop: string
16 @param prop: The name of the property to set.
17 """
19 """
20 Returns the name of the property on which to operate.
21
22 @rtype: string
23 """
25 """
26 Set the value with which the actuator operates.
27
28 If the value is not compatible with the type of the
29 property, the subsequent action is ignored.
30
31 @type value: string
32 """
34 """
35 Gets the value with which this actuator operates.
36
37 @rtype: string
38 """
39