constants group FrameSearchFlag in module com::sun::star::frame::

(Global Index)

Syntax

constants group FrameSearchFlag;

Description

These types describe the algorithm to be used to search a frame.

Constants Summary

AUTO SELF+CHILDREN

PARENT includes the parent frame

SELF includes the start frame

CHILDREN includes the child frames of the start frame

CREATE frame will be created if not found

SIBLINGS includes the other child frames of the parent of the start frame

TASKS includes all frames in all tasks in the current frames hierarchy

ALL includes all frames except frames in other tasks

GLOBAL searches in the whole hierarchy of frames.

Field Details



AUTO

Syntax

const long  AUTO = 0;

Description

SELF+CHILDREN


PARENT

Syntax

const long  PARENT = 1;

Description

includes the parent frame


SELF

Syntax

const long  SELF = 2;

Description

includes the start frame


CHILDREN

Syntax

const long  CHILDREN = 4;

Description

includes the child frames of the start frame


CREATE

Syntax

const long  CREATE = 8;

Description

frame will be created if not found


SIBLINGS

Syntax

const long  SIBLINGS = 16;

Description

includes the other child frames of the parent of the start frame


TASKS

Syntax

const long  TASKS = 32;

Description

includes all frames in all tasks in the current frames hierarchy


ALL

Syntax

const long  ALL = 23;

Description

includes all frames except frames in other tasks


GLOBAL

Syntax

const long  GLOBAL = 55;

Description

searches in the whole hierarchy of frames.

Top of Page