makeTitle            package:GenomeGraphs            R Documentation

_C_r_e_a_t_e_s _a_n _o_b_j_e_c_t _o_f _c_l_a_s_s _T_i_t_l_e

_D_e_s_c_r_i_p_t_i_o_n:

     Creates an object of class Title which can be used to add a title
     to the plot

_U_s_a_g_e:

     makeTitle(text, cex, color, size)

_A_r_g_u_m_e_n_t_s:

    text: The text that will make up the title

     cex: Font size of the title

   color: Font color of the title

    size: Size of the viewport in which the title resides

_V_a_l_u_e:

     Object of class Title

_A_u_t_h_o_r(_s):

     Steffen Durinck and Jim Bullard

_R_e_f_e_r_e_n_c_e_s:

     ~put references to the literature/web site here ~

_S_e_e _A_l_s_o:

     'gdPlot'

_E_x_a_m_p_l_e_s:

     ##---- Should be DIRECTLY executable !! ----
     ##-- ==>  Define data, use random,
     ##--    or do  help(data=index)  for the standard data sets.

     ## The function is currently defined as
     function (text, cex, color, size) 
     {
         dp <- getClass("Title")@prototype@dp
         if (!missing(cex)) 
             setPar(dp, "cex", cex)
         if (!missing(color)) 
             setPar(dp, "color", color)
         if (!missing(size)) 
             setPar(dp, "size", size)
         new("Title", title = text, dp = dp)
       }

