GridLayout.Undefined Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The constant used to indicate that a value is undefined.
[Android.Runtime.Register("UNDEFINED")]
public const int Undefined = -2147483648;
[<Android.Runtime.Register("UNDEFINED")>]
val mutable Undefined : int
Field Value
Value = -2147483648- Attributes
Remarks
The constant used to indicate that a value is undefined. Fields can use this value to indicate that their values have not yet been set. Similarly, methods can return this value to indicate that there is no suitable value that the implementation can return. The value used for the constant (currently Integer#MIN_VALUE
) is intended to avoid confusion between valid values whose sign may not be known.
Java documentation for android.widget.GridLayout.UNDEFINED
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.