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

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

interface XPatternField

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

Description
makes it possible to access the value and formatting of this pattern field.


Known Services which Export this Interface

com::sun::star::awt::UnoControlPatternField specifies a control to display and edit a string according to a pattern.

Methods' Summary

setMasks sets the pattern mask.
getMasks
setString sets the string value of this pattern field.
getString
setStrictFormat determines whether the format is checked even during editing.
isStrictFormat

Methods' Details

setMasks
 
[ oneway ] void
setMasks(
[ in ] string EditMask,
[ in ] string LiteralMask );

Description
sets the pattern mask.
getMasks
 
void
getMasks(
[ out ] string EditMask,
[ out ] string LiteralMask );

Returns
the currently set pattern mask.
setString
 
[ oneway ] void
setString(
[ in ] string Str );

Description
sets the string value of this pattern field.
getString
 
string
getString();
Returns
the currently set string value of this pattern field.
setStrictFormat
 
[ oneway ] void
setStrictFormat(
[ in ] boolean bStrict );

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

Top of Page