ecere/gfx/newFonts: Excluding from ECERE_ONEDRIVER configurations
[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.<br>"
6       "float a, b; // Declaring two floats at the same time.<br>"
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.<br>"
9       "<br>"
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 }