sealed
class int
An integer between -9223372036854775808 and 9223372036854775807.
public
int
.Constructor(
value
)
const
int
int
.MinValue
The minimum int value
const
int
int
.MaxValue
The maximum int value
public
static
int
int
.Convert(
value
)
Convert value into type int, null if not successful
public
virtual
object
.GetLayoutTip
Return a layout for the hint popup
public
virtual
object
.GetLayoutSpan
Return a layout inside a span
public
virtual
object
.GetLayoutBlock
Return a layout inside a block
public
virtual
object
.GetSourceReference
Return a source reference for this object
public
virtual
void
object
.GetTexSource(
source
)
LaTeX source code for this object
public
virtual
Icon
object
.GetIcon
Return a icon for this object
public
virtual
int
object
.Compare(
value
)
Compares this object with another and returns (-1, 0, or 1)
Example
=
ListBlock
{
Paragraph
{
"Decimal "
; 128};
Paragraph
{
"Large decimal "
; 1_234_567};
Paragraph
{
"Negative decimal "
;
-
567};
Paragraph
{
"Hexadecimal "
; 0xFF};
Paragraph
{
"Min value "
;
int
.
MinValue
};
Paragraph
{
"Max value "
;
int
.
MaxValue
};
};
•
Decimal 128
•
Large decimal 1234567
•
Negative decimal -567
•
Hexadecimal 255
•
Min value -9223372036854775808
•
Max value 9223372036854775807