%---------------- Functions ------------

\chapter{Rectangle.mui/Rectangle.mui}
\rule{\textwidth}{1mm}
\vspace{0.5cm}
\begin{deflist}{MMMMMMMM}
\item[\bf FUNCTION]
Rectangle class seems kind of useless since it
doesn't define any attributes or methods itself.
However, objects of this type are frequently
used in every application. They allow insertion
of space to control MUI's layout process.
\end{deflist}


\subsection{Rectangle.mui/MUIA\_Rectangle\_BarTitle}
\rule{\textwidth}{1mm}
\vspace{0.5cm}
\begin{deflist}{MMMMMMMM}
\item[\bf NAME]
\begin{description}
\item[MUIA\_Rectangle\_BarTitle]  -- (V11) [I.G], STRPTR
\end{description}

\item[\bf FUNCTION]
This attribute describes a text string which will be displayed
in group title style centered in the rectangle. Really only
makes sense for MUIA\_Rectangle\_HBar type objects.

\item[\bf SEE ALSO]
MUIA\_Rectangle\_HBar
\end{deflist}


\subsection{Rectangle.mui/MUIA\_Rectangle\_HBar}
\rule{\textwidth}{1mm}
\vspace{0.5cm}
\begin{deflist}{MMMMMMMM}
\item[\bf NAME]
\begin{description}
\item[MUIA\_Rectangle\_HBar]  -- (V7 ) [I.G], BOOL
\end{description}

\item[\bf FUNCTION]
When set to TRUE, MUI draws a horizontal bar in the middle of the
rectangle. Such bars can be used instead of group frames to
seperate objects in a window.

\item[\bf EXAMPLE]
\begin{flushleft}
\begin{verbatim}
/* draw a two pixel high bar in the middle
    of an 8 pixel high rectangle */

RectangleObject, MUIA_Rectangle_HBar, TRUE, MUIA_FixHeight, 8, End;
\end{verbatim}
\end{flushleft}
\item[\bf SEE ALSO]
MUIA\_Rectangle\_VBar
\end{deflist}


\subsection{Rectangle.mui/MUIA\_Rectangle\_VBar}
\rule{\textwidth}{1mm}
\vspace{0.5cm}
\begin{deflist}{MMMMMMMM}
\item[\bf NAME]
\begin{description}
\item[MUIA\_Rectangle\_VBar]  -- (V7 ) [I.G], BOOL
\end{description}

\item[\bf FUNCTION]
When set to TRUE, MUI draws a vertical bar in the middle of the
rectangle. Such bars can be used instead of group frames to
seperate objects in a window.

\item[\bf EXAMPLE]
\begin{flushleft}
\begin{verbatim}
/* draw a two pixel wide bar in the middle
    of an 8 pixel wide rectangle */

RectangleObject, MUIA_Rectangle_HBar, TRUE, MUIA_FixWidth, 8, End;
\end{verbatim}
\end{flushleft}
\item[\bf SEE ALSO]
MUIA\_Rectangle\_HBar
\end{deflist}


%---------------- End of File ----------
