doc: add econ-based text doc exported from previous ear-based eCdoc format.
[sdk] / doc / ecereCOM / float.econ
1 {
2    name = "float",
3    description = "A float data type.\n"
4       "\n"
5       "Memory occupied: 32 bits(or 4 bytes)\n"
6       "\n"
7       "A float data type holds a real number including the portion which follows the decimal point. The minimum precision for a float is 6 decimal digits. A floats range is from 1.17549435082228750e-38 to 3.40282346638528860e+38.",
8    usage = "Used in the declaration section of code, which is before any statements.",
9    example = "float aFloat; // A stand alone declaration of a float.\n"
10       "float a, b; // Declaring two floats at the same time.\n"
11       "float c = 12.123456; // Declaring and initializing a float at the same time.",
12    remarks = "Unlike other languages, the float data type is actually a class.\n"
13       "\n"
14       "float is equivalent to a float in C.",
15    also = "bool, byte, char, char *, double, enum, int, int64, uint, uint16, uint32, uint64, OnCompare(), OnCopy(), OnDisplay(), OnEdit(), OnFree(), OnGetDataFromString(), OnGetString(), OnSaveEdit(), OnSerialize(), OnUnserialize()"
16 }