value

Summary

Gets the value associated with a unique key for identifying the change type.

Usage

property System.Object value()

Returns

The value associated with the change.

Description

Gets the value associated with a unique key for identifying the change type.

Examples

Basic Usage
1
2
3
4
5
6
import System;
import Altitude.Frontend;
 
double currentTime = (new Date()).getTime();
Change timeChange = new Change("time", currentTime);
Console.log((System.Double) timeChange.value);

Share

HTML | BBCode | Direct Link