CommandifiedMemberTValue, TChangeTypeSetInitialValue Method |
Sets the initial value of this commandified member. It does this by bypassing the actual member set function.
Use this method to avoid events being raised while setting the value and also when you want to avoid using commands to set the value, as the
memberValue is set without using commands. No validation occurs as well, so only use this if you want to set the initial value after the ctor
has already been called.
Namespace:
SD.Tools.Algorithmia.GeneralDataStructures
Assembly:
SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.2.0.0 (1.2.16.0406)
Syntax public void SetInitialValue(
TValue value
)
Public Sub SetInitialValue (
value As TValue
)
Parameters
- value
- Type: TValue
The value.
See Also