sealed
class short
An integer between -32768 and 32767.
public
short
.Constructor(
value
)
const
short
short
.MinValue
The minimum short value
const
short
short
.MaxValue
The maximum short value
public
static
short
short
.Convert(
value
)
Convert value into type short, 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
{
"Min value "
;
short
.
MinValue
};
Paragraph
{
"Max value "
;
short
.
MaxValue
};
};
•
Min value -32768
•
Max value 32767