ITimeBasedStateModifyValueT Method  | 
 
            Modifies the 
elementIdentification in this instance of 
ITimeBasedState
            with the 
newValue.
            
 
    Namespace: 
   AGI.Foundation.Coordinates
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxvoid ModifyValue<T>(
	string elementIdentification,
	T newValue
)
Sub ModifyValue(Of T) ( 
	elementIdentification As String,
	newValue As T
)
generic<typename T>
void ModifyValue(
	String^ elementIdentification, 
	T newValue
)
abstract ModifyValue : 
        elementIdentification : string * 
        newValue : 'T -> unit 
Parameters
- elementIdentification
 - Type: SystemString
The name of the element to change. - newValue
 - Type: T
The new value for the elementIdentification. 
Type Parameters
- T
 - The type that the value described by the elementIdentification is.
 
See Also