interface XAutoTextContainer in module com::sun::star::text::

(Global Index)

Syntax

interface XAutoTextContainer : com::sun::star::container::XNameAccess ;

Description

handles blocks of AutoTextEntry .

Example

 AutoTextPath=d:\office\autotext;f:\user\autotext

 groupname: "standard * 0"
 -> the group file is located n the path d:\office\autotext
 groupname: "all * 1"
 -> the group file is located in the path f:\user\autotext\

If the path extension is not specified, then the first directory is used. For automatic text expansion, the name of an actual group is set to search first in this group.

See also

AutoTextContainer

Method Summary

insertNewByName creates a new AutoText group.

removeByName deletes the specified AutoText group.

Known Services Which Export this Interface

com::sun::star::text::AutoTextContainer

Method Details



insertNewByName

Syntax

com::sun::star::text::XAutoTextGroup insertNewByName (
string aGroupName )
raises ( com::sun::star::lang::IllegalArgumentException , com::sun::star::container::ElementExistException );

Description

creates a new AutoText group.


removeByName

Syntax

void removeByName (
string aGroupName )
raises ( com::sun::star::container::NoSuchElementException );

Description

deletes the specified AutoText group.

Top of Page