interface XPatternField in module com::sun::star::awt::

(Global Index)

Syntax

interface XPatternField : com::sun::star::uno::XInterface ;

Description

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

Method 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

Known Services Which Export this Interface

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

Method Details



setMasks

Syntax

oneway void setMasks (
string EditMask,
string LiteralMask );

Description

sets the pattern mask.


getMasks

Syntax

void getMasks (
string EditMask,
string LiteralMask );

Returns

the currently set pattern mask.

setString

Syntax

oneway void setString (
string Str );

Description

sets the string value of this pattern field.


getString

Syntax

string getString ();

Returns

the currently set string value of this pattern field.

setStrictFormat

Syntax

oneway void setStrictFormat (
boolean bStrict );

Description

determines whether the format is checked even during editing.


isStrictFormat

Syntax

boolean isStrictFormat ();

Returns

whether the format is currently checked even during editing.
Top of Page