2ea1622737cb73a8a8665a807a7d3eae8bfaa85e
[sdk] / doc / ecereCOM / float.econ
1 {
2    name = "float",
3    description = "Core C single precision floating-point real number  data type. A float ranges from 1.17549435082228750e-38 to 3.40282346638528860e+38.",
4    usage = "Used in the declaration section of code, which is before any statements.",
5    example = "float aFloat; // A stand alone declaration of a float.\n"
6       "float a, b; // Declaring two floats at the same time.\n"
7       "float c = 12.123456; // Declaring and initializing a float at the same time.",
8    remarks = "Unlike other languages, the float data type is actually a class.\n"
9       "\n"
10       "float is equivalent to a float in C.",
11    also = "bool, byte, char, char *, double, enum, int, int64, uint, uint16, uint32, uint64, OnCompare(), OnCopy(), OnDisplay(), OnEdit(), OnFree(), OnGetDataFromString(), OnGetString(), OnSaveEdit(), OnSerialize(), OnUnserialize()"
12 }