Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: awt ::

interface XTimeField

Base Interface
com::sun::star::uno::XInterface

Description
gives access to the time value and formatting information of a time field.


Known Services which Export this Interface

com::sun::star::awt::UnoControlTimeField specifies a control to display and edit a time value.

Methods' Summary

setTime sets the time value to display in the time field.
getTime
setMin sets the minimum value to accept by the user.
getMin
setMax sets the maximum value to accept by the user.
getMax
setFirst sets the first value to set on "Pos1" key.
getFirst
setLast sets the last value to set on "End" key.
getLast
setEmpty sets the empty value for the time.
isEmpty
setStrictFormat determines if the format is checked, even during editing.
isStrictFormat

Methods' Details

setTime
 
[ oneway ] void
setTime(
[ in ] long Time );

Description
sets the time value to display in the time field.
getTime
 
long
getTime();
Returns
the time value which is currently displayed in the time field.
setMin
 
[ oneway ] void
setMin(
[ in ] long Date );

Description
sets the minimum value to accept by the user.
getMin
 
long
getMin();
Returns
the currently set minimum value accepted by the user.
setMax
 
[ oneway ] void
setMax(
[ in ] long Date );

Description
sets the maximum value to accept by the user.
getMax
 
long
getMax();
Returns
the currently set maximum value accepted by the user.
setFirst
 
[ oneway ] void
setFirst(
[ in ] long Date );

Description
sets the first value to set on "Pos1" key.
getFirst
 
long
getFirst();
Returns
the currently set first value which is set on "Pos1" key.
setLast
 
[ oneway ] void
setLast(
[ in ] long Date );

Description
sets the last value to set on "End" key.
getLast
 
long
getLast();
Returns
the currently set last value which is set on "End" key.
setEmpty
 
void
setEmpty();
Description
sets the empty value for the time.
isEmpty
 
boolean
isEmpty();
Returns
whether currently the empty value is set for the time.
setStrictFormat
 
[ oneway ] void
setStrictFormat(
[ in ] boolean bStrict );

Description
determines if the format is checked, even during editing.
isStrictFormat
 
boolean
isStrictFormat();
Returns
whether the format is currently checked even during editing.

Top of Page