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

interface XPatternField
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XPatternField
Description
makes it possible to access the value and formatting of this pattern field.

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
[in] string
 
EditMask,
LiteralMask );

Description
sets the pattern mask.
getMasks
void
getMasks(
 
[out] string
[out] string
 
EditMask,
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