Program Documentation | SASUnit Examples - SASUnit Test Documentation
Program Documentation for Program _reportcreatestyle.sas

new_description
Detailed description
Creates to style used while rendering ODS output.
 
 
Version
\$Revision: 515 $
 
Author
\$Author: klandwich $
 
Date
\$Date: 2017-07-10 15:52:27 +0200 (Mo, 10 Jul 2017) $
 
 
See also
For further information please refer to https://sourceforge.net/p/sasunit/wiki/User%27s%20Guide/
Here you can find the SASUnit documentation, release notes and license information.
\$HeadURL: https://svn.code.sf.net/p/sasunit/code/tags/v1.7.0/saspgm/sasunit/_reportcreatestyle.sas $
 
Copyright
This file is part of SASUnit, the Unit testing framework for SAS(R) programs.
For copyright information and terms of usage under the GPL license see included file readme.txt
or https://sourceforge.net/p/sasunit/wiki/readme/.
 
 

Source Code of Program _reportcreatestyle.sas
[Download]

ObsNum Text
00001  
00002 %macro _reportCreateStyle ;
00003  
00004 proc template;
00005 define style Styles.SASUNIT_classic;
00006 style fonts
00007 "Fonts used in the default style" /
00008 'TitleFont' = ("Geneva, Arial, Helvetica, sans-serif",16pt,Bold)
00009 'TitleFont2' = ("Geneva, Arial, Helvetica, sans-serif",12pt,Bold)
00010 'TitleFont3' = ("Geneva, Arial, Helvetica, sans-serif",10pt,Bold)
00011 'StrongFont' = ("Geneva, Arial, Helvetica, sans-serif", 9pt,Bold)
00012 'EmphasisFont' = ("Geneva, Arial, Helvetica, sans-serif",9pt,Italic)
00013 'FixedEmphasisFont' = ("<monospace>, Courier, monospace",9pt,Italic)
00014 'FixedStrongFont' = ("<monospace>, Courier, monospace",9pt,Bold)
00015 'FixedHeadingFont' = ("<monospace>, Courier, monospace",9pt)
00016 'BatchFixedFont' = ("SAS Monospace, <monospace>, Courier, monospace", 9pt)
00017 'FixedFont' = ("<monospace>, Courier",9pt)
00018 'headingEmphasisFont' = ("Geneva, Arial, Helvetica, sans-serif",9pt,Bold Italic)
00019 'headingFont' = ("Geneva, Arial, Helvetica, sans-serif",9pt,Bold)
00020 'docFont' = ("Geneva, Arial, Helvetica, sans-serif",9pt);
00021 style GraphFonts
00022 "Fonts used in graph styles" /
00023 'GraphDataFont' = ("Arial",8pt)
00024 'GraphValueFont' = ("Arial",10pt)
00025 'GraphLabelFont' = ("Arial",12pt,Bold)
00026 'GraphFootnoteFont' = ("Arial",12pt,Bold)
00027 'GraphTitleFont' = ("Arial",14pt,Bold);
00028 style color_list
00029 "Colors used in the default style" /
00030 /* Notes, Titles, Document */
00031 'fgA' = cx002288
00032 'bgA' = white
00033 /* Table */
00034 'fgA1' = cx000000
00035 'bgA1' = white
00036 /* Header */
00037 'fgA2' = cx0033AA
00038 'bgA2' = cxe8eef2
00039 /* Data Cells */
00040 'fgA3' = dark red
00041 'bgA3' = cxe8eef2
00042 /* not used */
00043 'fgA4' = cx000080
00044 'bgA4' = cxe8eef2
00045 /* Links */
00046 'fgB1' = cx000080
00047 'bgB1' = cxe8eef2
00048 /* not used */
00049 'fgB2' = cx0066AA
00050 'bgB2' = cxe8eef2
00051 /* Testcoverage */
00052 'fgTcgCovered' = cx00BE00
00053 'fgTcgNonCovered' = cxFF8020
00054 'fgTcgComment' = cx828282
00055 'fgTcgNonContrib' = cx8020FF
00056 'fgErrorCount' = red
00057 /* Program documentation */
00058 'bgPgmDocTodo' = Bisque
00059 'bgPgmDocTest' = LightBlue
00060 'bgPgmDocBug' = LightCoral
00061 'bgPgmDocRemark' = LightGreen
00062 'fgPgmDocDep' = white
00063 'bgPgmDocDep' = cx808080
00064 'fgPgmDocSource' = cx606060
00065 ;
00066 style colors
00067 "Abstract colors used in the default style" /
00068 'headerfgemph' = color_list('fgA2')
00069 'headerbgemph' = cxd7dde1
00070 'headerfgstrong' = color_list('fgA2')
00071 'headerbgstrong' = cxd7dde1
00072 'headerfg' = color_list('fgA2')
00073 'headerbg' = cxd7dde1
00074 'datafgemph' = color_list('fgA1')
00075 'databgemph' = color_list('bgA3')
00076 'datafgstrong' = color_list('fgB1')
00077 'databgstrong' = color_list('bgA3')
00078 'datafg' = color_list('fgA1')
00079 'databg' = color_list('bgA3')
00080 'batchfg' = color_list('fgA1')
00081 'batchbg' = color_list('bgA3')
00082 'tableborder' = cxCCCCCC
00083 'tablebg' = color_list('bgA1')
00084 'notefg' = color_list('fgA')
00085 'notebg' = color_list('bgA')
00086 'bylinefg' = color_list('fgA2')
00087 'bylinebg' = color_list('bgA2')
00088 'captionfg' = color_list('fgA1')
00089 'captionbg' = color_list('bgA')
00090 'proctitlefg' = color_list('fgA')
00091 'proctitlebg' = color_list('bgA')
00092 'titlefg' = color_list('fgA')
00093 'titlebg' = color_list('bgA')
00094 'systitlefg' = black
00095 'systitlebg' = color_list('bgA')
00096 'Conentryfg' = color_list('fgA2')
00097 'Confolderfg' = color_list('fgA')
00098 'Contitlefg' = color_list('fgA')
00099 'link2' = color_list('fgB1')
00100 'link1' = color_list('fgB1')
00101 'contentfg' = color_list('fgA2')
00102 'contentbg' = color_list('bgA2')
00103 'docfg' = color_list('fgA')
00104 'docbg' = color_list('bgA')
00105 ;
00106 style GraphColors
00107 "Abstract colors used in graph styles" /
00108 'gcerror' = cx000000
00109 'gerror' = cxB9CFE7
00110 'gcpredictlim' = cx003178
00111 'gpredictlim' = cxB9CFE7
00112 'gcpredict' = cx003178
00113 'gpredict' = cx003178
00114 'gcconfidence' = cx003178
00115 'gconfidence' = cxB9CFE7
00116 'gcfit' = cx003178
00117 'gfit' = cx003178
00118 'gcoutlier' = cx000000
00119 'goutlier' = cxB9CFE7
00120 'gcdata' = cx000000
00121 'gdata' = cxB9CFE7
00122 'ginsetheader' = colors('docbg')
00123 'ginset' = cxFFFFFF
00124 'greferencelines' = cx808080
00125 'gheader' = colors('docbg')
00126 'gconramp3cend' = cxFF0000
00127 'gconramp3cneutral' = cxFF00FF
00128 'gconramp3cstart' = cx0000FF
00129 'gramp3cend' = cxDD6060
00130 'gramp3cneutral' = cxFFFFFF
00131 'gramp3cstart' = cx6497EB
00132 'gconramp2cend' = cx6497EB
00133 'gconramp2cstart' = cxFFFFFF
00134 'gramp2cend' = cx5E528B
00135 'gramp2cstart' = cxFFFFFF
00136 'gtext' = cx000000
00137 'glabel' = cx000000
00138 'gborderlines' = cx000000
00139 'goutlines' = cx000000
00140 'ggrid' = cx808080
00141 'gaxis' = cx000000
00142 'gshadow' = cx000000
00143 'glegend' = cxFFFFFF
00144 'gfloor' = cxFFFFFF
00145 'gwalls' = cxFFFFFF
00146 'gcdata12' = cxF7AC4E
00147 'gcdata11' = cxB38EF3
00148 'gcdata10' = cx47A82A
00149 'gcdata9' = cxC08A13
00150 'gcdata8' = cx2597FA
00151 'gcdata7' = cxB26084
00152 'gcdata6' = cx7F8E1F
00153 'gcdata5' = cx9D3CDB
00154 'gcdata4' = cxC1161C
00155 'gcdata3' = cx426952
00156 'gcdata2' = cx763810
00157 'gcdata1' = cx2A25D9
00158 'gdata12' = cx7F5934
00159 'gdata11' = cxC8573C
00160 'gdata10' = cx679920
00161 'gdata9' = cx5E528B
00162 'gdata8' = cxD6C66E
00163 'gdata7' = cxB87F32
00164 'gdata6' = cx6F7500
00165 'gdata5' = cx8AA4C9
00166 'gdata4' = cxFDC861
00167 'gdata3' = cx98341C
00168 'gdata2' = cx8DA642
00169 'gdata1' = cx6173A9;
00170 style html
00171 "Common HTML text used in the default style" /
00172 'expandAll' = "<span onclick=""if(msie4==1)expandAll()"">"
00173 'posthtml flyover line' = "</span><hr size=""3"">"
00174 'prehtml flyover line' = "<span><hr size=""3"">"
00175 'prehtml flyover bullet' = %nrstr("<span><b>&#183;</b>")
00176 'posthtml flyover' = "</span>"
00177 'prehtml flyover' = "<span>"
00178 'break' = "<br>"
00179 'Line' = "<hr size=""3"">"
00180 'PageBreakLine' = "<p style=""page-break-after: always;""><br></p><hr size=""3"">"
00181 'fake bullet' = %nrstr("<b>&#183;</b>")
00182 ;
00183 style text
00184 "Common text." /
00185 'Fatal Banner' = "Fatal:"
00186 'Error Banner' = "Error:"
00187 'Warn Banner' = "Warning:"
00188 'Note Banner' = "Note:"
00189 'Pages Title' = "Table of Pages"
00190 'Content Title' = "Table of Contents"
00191 'suffix1' = " Procedure"
00192 'prefix1' = "The ";
00193 style StartUpFunction
00194 "Controls the StartUp Function. TAGATTR is only element used.";
00195 style ShutDownFunction
00196 "Controls the Shut-Down Function. TAGATTR is only element used.";
00197 style Container
00198 "Abstract. Controls all container oriented elements." /
00199 font = Fonts('DocFont')
00200 foreground = colors('docfg')
00201 background = colors('docbg');
00202 style Index from Container
00203 "Abstract. Controls Contents and Pages." /
00204 foreground = colors('contentfg')
00205 background = colors('contentbg');
00206 style Document from Container
00207 "Abstract. Controls the various document bodies." /
00208 htmldoctype = "<!DOCTYPE HTML PUBLIC ""-//W3C//DTD HTML 3.2 Final//EN"">"
00209 htmlcontenttype = "text/html"
00210 protectspecialchars = auto
00211 linkcolor = colors('link1')
00212 activelinkcolor = colors('link1')
00213 visitedlinkcolor = colors('link1')
00214 textdecoration = _undef_
00215 outputwidth = 95%
00216 ;
00217 style Body from Document
00218 "Controls the Body file." /
00219 rightmargin = 8
00220 leftmargin = 8
00221 pagebreakhtml = _undef_ /*html('PageBreakLine')*/
00222 ;
00223 style Frame from Document
00224 "Controls the Frame file." /
00225 contentposition = L
00226 bodyscrollbar = auto
00227 bodysize = *
00228 contentscrollbar = auto
00229 contentsize = 23%
00230 framespacing = 1
00231 frameborderwidth = 4
00232 frameborder = on;
00233 style Contents from Document
00234 "Controls the Contents file." /
00235 bullet = "decimal"
00236 tagattr = " onload=""if (msie4 == 1)expandAll()"""
00237 pagebreakhtml = html('break')
00238 foreground = colors('contentfg')
00239 background = colors('contentbg')
00240 rightmargin = 8
00241 leftmargin = 8;
00242 style Pages from Document
00243 "Controls the Pages file." /
00244 bullet = "decimal"
00245 tagattr = " onload=""if (msie4 == 1)expandAll()"""
00246 pagebreakhtml = html('break')
00247 foreground = colors('contentfg')
00248 background = colors('contentbg')
00249 rightmargin = 8
00250 leftmargin = 8;
00251 style Date from Container
00252 "Abstract. Controls how date fields look." /
00253 outputwidth = 95%
00254 background = colors('contentbg')
00255 foreground = colors('contentfg');
00256 style BodyDate from Date
00257 "Controls the date field in the Body file." /
00258 vjust = T
00259 just = R
00260 cellspacing = 0
00261 cellpadding = 0
00262 background = colors('docbg')
00263 foreground = colors('docfg');
00264 style ContentsDate from Date
00265 "Controls the date in the Contents file.";
00266 style PagesDate from Date
00267 "Controls the date in the Pages file.";
00268 style IndexItem from Container
00269 "Abstract. Controls list items and folders for Contents and Pages." /
00270 leftmargin = 6pt
00271 posthtml = html('posthtml flyover')
00272 prehtml = html('prehtml flyover bullet')
00273 listentryanchor = on
00274 bullet = NONE
00275 background = _undef_
00276 foreground = colors('conentryfg');
00277 style ContentFolder from IndexItem
00278 "Controls the generic folder definition in the Contents file." /
00279 listentryanchor = off
00280 foreground = colors('confolderfg');
00281 style ByContentFolder from ContentFolder
00282 "Controls the byline folder in the Contents file.";
00283 style ContentItem from IndexItem
00284 "Controls the leafnode item in the Contents file.";
00285 style PagesItem from IndexItem
00286 "Controls the leafnode item in the Pages file.";
00287 style IndexProcName from Index
00288 "Abstract. Controls the proc name in the list files." /
00289 listentryanchor = off
00290 bullet = "decimal"
00291 posthtml = html('posthtml flyover')
00292 prehtml = html('prehtml flyover')
00293 posttext = text('suffix1')
00294 pretext = text('prefix1')
00295 background = _undef_
00296 foreground = colors('contitlefg');
00297 style ContentProcName from IndexProcName
00298 "Controls the proc name in the Contents file.";
00299 style ContentProcLabel from ContentProcName
00300 "Controls the proc label in the Contents file." /
00301 posttext = _undef_
00302 pretext = _undef_;
00303 style PagesProcName from IndexProcName
00304 "Controls the proc name in the Pages file.";
00305 style PagesProcLabel from PagesProcName
00306 "Controls the proc label in the Pages file." /
00307 posttext = _undef_
00308 pretext = _undef_;
00309 style IndexAction from IndexItem
00310 "Abstract. Determines what happens on mouse-over events for folders and items.";
00311 style FolderAction from IndexAction
00312 "Determines what happens on mouse-over events for folders.";
00313 style IndexTitle from Index
00314 "Abstract. Controls the title of Contents and Pages files." /
00315 posthtml = html('posthtml flyover line')
00316 prehtml = html('expandAll')
00317 font = fonts('EmphasisFont')
00318 background = _undef_
00319 foreground = colors('contitlefg');
00320 style ContentTitle from IndexTitle
00321 "Controls the title of the Contents file." /
00322 pretext = text('content title');
00323 style PagesTitle from IndexTitle
00324 "Controls the title of the Pages file." /
00325 pretext = text('pages title');
00326 style SysTitleAndFooterContainer from Container
00327 "Controls container for system page title and system page footer." /
00328 rules = NONE
00329 frame = VOID
00330 outputwidth = 95%
00331 cellpadding = 1
00332 cellspacing = 1
00333 borderwidth = 0;
00334 style TitleAndNoteContainer from Container
00335 "Controls container for procedure defined titles and notes." /
00336 rules = NONE
00337 frame = VOID
00338 outputwidth = 95%
00339 cellpadding = 1
00340 cellspacing = 1
00341 borderwidth = 0;
00342 style TitlesAndFooters from Container
00343 "Abstract. Controls system page title text and system page footer text." /
00344 font = Fonts('TitleFont2')
00345 background = colors('systitlebg')
00346 foreground = colors('systitlefg');
00347 style BylineContainer from Container
00348 "Controls container for the byline." /
00349 background = colors('Docbg')
00350 rules = NONE
00351 frame = VOID
00352 outputwidth = 95%
00353 cellpadding = 1
00354 cellspacing = 1
00355 borderwidth = 0;
00356 style SystemTitle from TitlesAndFooters
00357 "Controls system title text." /
00358 font = Fonts('TitleFont');
00359 style SystemFooter from TitlesAndFooters
00360 "Controls system footer text." /
00361 font = Fonts('TitleFont')
00362 fontsize = 9pt;
00363 style PageNo from TitlesAndFooters
00364 "Controls page numbers for printer" /
00365 vjust = T
00366 just = R
00367 cellspacing = 0
00368 cellpadding = 0
00369 font = fonts('strongFont');
00370 style ExtendedPage from TitlesAndFooters
00371 "Msg when page won't fit." /
00372 just = C
00373 cellpadding = 2pt
00374 borderwidth = 1pt
00375 fillrulewidth = 0.5pt
00376 posttext = ", which would not fit on a single physical page"
00377 pretext = "Continuing contents of page "
00378 frame = box
00379 font = fonts('EmphasisFont');
00380 style Byline from TitlesAndFooters
00381 "Controls byline text." /
00382 cellspacing = 0
00383 cellpadding = 0
00384 font = fonts('headingFont')
00385 background = colors('bylinebg')
00386 foreground = colors('bylinefg');
00387 style ProcTitle from TitlesAndFooters
00388 "Controls procedure title text." /
00389 background = colors('proctitlebg')
00390 foreground = colors('proctitlefg');
00391 style ProcTitleFixed from ProcTitle
00392 "Controls procedure title text, fixed font." /
00393 font = fonts('FixedStrongFont');
00394 style Output from Container
00395 "Abstract. Controls basic output forms." /
00396 background = colors('tablebg')
00397 rules = ALL
00398 frame = box
00399 cellpadding = 7
00400 cellspacing = 1
00401 bordercolor = colors('tableborder')
00402 borderwidth = 1;
00403 style Table from Output
00404 "Controls overall table style." /
00405 cellpadding = 1
00406 cellspacing = 4
00407 Borderwidth = 0
00408 bordercollapse=separate
00409 borderspacing=2px;
00410 style Batch from Output
00411 "Controls batch mode output." /
00412 font = fonts('BatchFixedFont')
00413 foreground = colors('batchfg')
00414 background = colors('batchbg');
00415 style Note from Container
00416 "Abstract. Controls the container for note banners and note contents." /
00417 background = colors('notebg')
00418 foreground = colors('notefg');
00419 style NoteBanner from Note
00420 "Controls the banner for NOTE:s." /
00421 font_weight = Bold
00422 pretext = text('Note Banner');
00423 style NoteContent from Note
00424 "Controls the contents for NOTE:s.";
00425 style UserText from Note
00426 "Controls the TEXT= style";
00427 style NoteContentFixed from NoteContent
00428 "Controls the contents for NOTE:s. Fixed font." /
00429 font = fonts('FixedFont');
00430 style WarnBanner from Note
00431 "Controls the banner for WARNING:s." /
00432 font_weight = Bold
00433 pretext = text('Warn Banner');
00434 style WarnContent from Note
00435 "Controls the contents of WARNING:s.";
00436 style WarnContentFixed from WarnContent
00437 "Controls the contents for WARNING:s. Fixed font." /
00438 font = fonts('FixedFont');
00439 style ErrorBanner from Note
00440 "Controls the banner for ERROR:s." /
00441 font_weight = Bold
00442 pretext = text('Error Banner');
00443 style ErrorContent from Note
00444 "Controls the contents of ERROR:s.";
00445 style ErrorContentFixed from ErrorContent
00446 "Controls the contents for ERROR:s. Fixed font." /
00447 font = fonts('FixedFont');
00448 style FatalBanner from Note
00449 "Controls the banner for FATAL:s." /
00450 font_weight = Bold
00451 pretext = text('Fatal Banner');
00452 style FatalContent from Note
00453 "Controls the contents of FATAL:s.";
00454 style FatalContentFixed from FatalContent
00455 "Controls the contents for FATAL:s. Fixed font." /
00456 font = fonts('FixedFont');
00457 style Cell from Container
00458 "Abstract. Controls general cells." /
00459 paddingtop = 2px
00460 paddingleft = 10px
00461 paddingright = 10px
00462 paddingbottom = 2px
00463 margintop = 2px
00464 marginleft = 0px
00465 marginright = 0px
00466 marginbottom = 2px
00467 bordercolor = colors('tableborder')
00468 borderwidth = 1px
00469 ;
00470 style Data from Cell
00471 "Default style for data cells in columns." /
00472 foreground = colors('datafg')
00473 background = colors('databg')
00474 verticalalign = middle
00475 ;
00476 style DataFixed from Data
00477 "Default style for data cells in columns. Fixed font." /
00478 font = fonts('FixedFont');
00479 style DataEmpty from Data
00480 "Controls empty data cells in columns.";
00481 style DataEmphasis from Data
00482 "Controls emphasized data cells in columns." /
00483 foreground = colors('datafgemph')
00484 background = colors('databgemph')
00485 font = fonts('EmphasisFont');
00486 style DataEmphasisFixed from DataEmphasis
00487 "Controls emphasized data cells in columns. Fixed font." /
00488 font = fonts('FixedEmphasisFont');
00489 style DataStrong from Data
00490 "Controls strong (more emphasized)data cells in columns." /
00491 foreground = colors('datafgstrong')
00492 background = colors('databgstrong')
00493 font = fonts('StrongFont');
00494 style DataStrongFixed from DataStrong
00495 "Controls strong (more emphasized)data cells in columns. Fixed font." /
00496 font = fonts('FixedStrongFont');
00497 style TableHeaderContainer from Container
00498 " Box around all column headers. " /
00499 abstract = on;
00500 style TableFooterContainer from Container
00501 " Box around all column footers. " /
00502 abstract = on;
00503 style ColumnGroup from Container
00504 " Box around groups of columns. This corresponds to RULES=GROUPS " /
00505 abstract = on;
00506 style HeadersAndFooters from Cell
00507 "Abstract. Controls table headers and footers." /
00508 font = fonts('HeadingFont')
00509 foreground = colors('headerfg')
00510 background = colors('headerbg')
00511 ;
00512 style Caption from HeadersAndFooters
00513 "Abstract. Controls caption field in proc tabulate." /
00514 cellspacing = 0
00515 cellpadding = 0
00516 foreground = colors('captionfg')
00517 background = colors('captionbg');
00518 style BeforeCaption from Caption
00519 "Caption that comes before a table.";
00520 style AfterCaption from Caption
00521 "Caption that comes after a table.";
00522 style Header from HeadersAndFooters
00523 "Controls the headers of a table." /
00524 foreground = black
00525 borderwidth = 2px;
00526 style HeaderFixed from Header
00527 "Controls the header of a table. Fixed font." /
00528 font = fonts('FixedFont');
00529 style HeaderEmpty from Header
00530 "Controls empty table header cells.";
00531 style HeaderEmphasis from Header
00532 "Controls emphasized table header cells." /
00533 foreground = colors('headerfgemph')
00534 background = colors('headerbgemph')
00535 font = fonts('EmphasisFont');
00536 style HeaderEmphasisFixed from HeaderEmphasis
00537 "Controls emphasized table header cells. Fixed font." /
00538 font = fonts('FixedEmphasisFont');
00539 style HeaderStrong from Header
00540 "Controls strong (more emphasized)table header cells." /
00541 foreground = colors('headerfgstrong')
00542 background = colors('headerbgstrong')
00543 font = fonts('StrongFont');
00544 style HeaderStrongFixed from HeaderStrong
00545 "Controls strong (more emphasized)table header cells. Fixed font." /
00546 font = fonts('FixedStrongFont');
00547 style RowHeader from Header
00548 "Controls row headers." /
00549 background = color_list('bgA3')
00550 vjust = middle
00551 borderwidth = 1px;
00552 style RowHeaderFixed from RowHeader
00553 "Controls row headers. Fixed font." /
00554 font = fonts('FixedFont');
00555 style RowHeaderEmpty from RowHeader
00556 "Controls empty row headers.";
00557 style RowHeaderEmphasis from RowHeader
00558 "Controls emphasized row headers." /
00559 font = fonts('EmphasisFont');
00560 style RowHeaderEmphasisFixed from RowHeaderEmphasis
00561 "Controls emphasized row headers. Fixed font." /
00562 font = fonts('FixedEmphasisFont');
00563 style RowHeaderStrong from RowHeader
00564 "Controls strong (more emphasized)row headers." /
00565 font = fonts('StrongFont');
00566 style RowHeaderStrongFixed from RowHeaderStrong
00567 "Controls strong (more emphasized)row headers. Fixed font." /
00568 font = fonts('FixedStrongFont');
00569 style Footer from HeadersAndFooters
00570 "Controls table footers.";
00571 style FooterFixed from Footer
00572 "Controls table footers. Fixed font." /
00573 font = fonts('FixedFont');
00574 style FooterEmpty from Footer
00575 "Controls empty table footers.";
00576 style FooterEmphasis from Footer
00577 "Controls emphasized table footers." /
00578 font = fonts('EmphasisFont');
00579 style FooterEmphasisFixed from FooterEmphasis
00580 "Controls emphasized table footers. Fixed font." /
00581 font = fonts('FixedEmphasisFont');
00582 style FooterStrong from Footer
00583 "Controls strong (more emphasized)table footers." /
00584 font = fonts('StrongFont');
00585 style FooterStrongFixed from FooterStrong
00586 "Controls strong (more emphasized)table footers. Fixed font." /
00587 font = fonts('FixedStrongFont');
00588 style RowFooter from Footer
00589 "Controls a row footer (label).";
00590 style RowFooterFixed from RowFooter
00591 "Controls a row footer (label). Fixed font." /
00592 font = fonts('FixedFont');
00593 style RowFooterEmpty from RowFooter
00594 "Controls an empty row footer (label).";
00595 style RowFooterEmphasis from RowFooter
00596 "Controls an emphasized row footer (label)." /
00597 font = fonts('EmphasisFont');
00598 style RowFooterEmphasisFixed from RowFooterEmphasis
00599 "Controls an emphasized row footer (label). Fixed font." /
00600 font = fonts('FixedEmphasisFont');
00601 style RowFooterStrong from RowFooter
00602 "Controls a strong (more emphasized)row footer (label)." /
00603 font = fonts('StrongFont');
00604 style RowFooterStrongFixed from RowFooterStrong
00605 "Controls a strong (more emphasized)row footer (label). Fixed font." /
00606 font = fonts('FixedStrongFont');
00607 style Graph from Output
00608 "Control rudimentary graph output." /
00609 cellpadding = 0
00610 background = colors('docbg');
00611 style GraphComponent /
00612 abstract = on;
00613 style GraphCharts from GraphComponent;
00614 style GraphWalls from GraphComponent /
00615 background = GraphColors('gwalls');
00616 style GraphAxisLines from GraphComponent /
00617 foreground = GraphColors('gaxis');
00618 style GraphGridLines from GraphComponent /
00619 foreground = GraphColors('ggrid');
00620 style GraphOutlines from GraphComponent /
00621 foreground = GraphColors('goutlines');
00622 style GraphBorderLines from GraphComponent /
00623 foreground = GraphColors('gborderlines');
00624 style GraphReferenceLines from GraphComponent /
00625 foreground = GraphColors('greferencelines');
00626 style GraphTitleText from GraphComponent /
00627 font = GraphFonts('GraphTitleFont')
00628 foreground = GraphColors('gtext');
00629 style GraphFootnoteText from GraphComponent /
00630 font = GraphFonts('GraphFootnoteFont')
00631 foreground = GraphColors('gtext');
00632 style GraphDataText from GraphComponent /
00633 font = GraphFonts('GraphDataFont')
00634 foreground = GraphColors('gtext');
00635 style GraphLabelText from GraphComponent /
00636 font = GraphFonts('GraphLabelFont')
00637 foreground = GraphColors('glabel');
00638 style GraphValueText from GraphComponent /
00639 font = GraphFonts('GraphValueFont')
00640 foreground = GraphColors('gtext');
00641 style GraphBackground from GraphComponent /
00642 background = colors('docbg');
00643 style GraphFloor from GraphComponent /
00644 background = GraphColors('gfloor');
00645 style GraphLegendBackground from GraphComponent /
00646 background = GraphColors('glegend');
00647 style GraphHeaderBackground from GraphComponent /
00648 background = GraphColors('gheader');
00649 style DropShadowStyle from GraphComponent /
00650 foreground = GraphColors('gshadow');
00651 style GraphDataDefault from GraphComponent /
00652 markersymbol = "circle"
00653 linestyle = 1
00654 contrastcolor = GraphColors('gcdata')
00655 foreground = GraphColors('gdata');
00656 style GraphData1 from GraphComponent /
00657 contrastcolor = GraphColors('gcdata1')
00658 foreground = GraphColors('gdata1');
00659 style GraphData2 from GraphComponent /
00660 contrastcolor = GraphColors('gcdata2')
00661 foreground = GraphColors('gdata2');
00662 style GraphData3 from GraphComponent /
00663 contrastcolor = GraphColors('gcdata3')
00664 foreground = GraphColors('gdata3');
00665 style GraphData4 from GraphComponent /
00666 contrastcolor = GraphColors('gcdata4')
00667 foreground = GraphColors('gdata4');
00668 style GraphData5 from GraphComponent /
00669 contrastcolor = GraphColors('gcdata5')
00670 foreground = GraphColors('gdata5');
00671 style GraphData6 from GraphComponent /
00672 contrastcolor = GraphColors('gcdata6')
00673 foreground = GraphColors('gdata6');
00674 style GraphData7 from GraphComponent /
00675 contrastcolor = GraphColors('gcdata7')
00676 foreground = GraphColors('gdata7');
00677 style GraphData8 from GraphComponent /
00678 contrastcolor = GraphColors('gcdata8')
00679 foreground = GraphColors('gdata8');
00680 style GraphData9 from GraphComponent /
00681 contrastcolor = GraphColors('gcdata9')
00682 foreground = GraphColors('gdata9');
00683 style GraphData10 from GraphComponent /
00684 contrastcolor = GraphColors('gcdata10')
00685 foreground = GraphColors('gdata10');
00686 style GraphData11 from GraphComponent /
00687 contrastcolor = GraphColors('gcdata11')
00688 foreground = GraphColors('gdata11');
00689 style GraphData12 from GraphComponent /
00690 contrastcolor = GraphColors('gcdata12')
00691 foreground = GraphColors('gdata12');
00692 style TwoColorRamp from GraphComponent /
00693 endcolor = GraphColors('gramp2cend')
00694 startcolor = GraphColors('gramp2cstart');
00695 style TwoColorAltRamp from GraphComponent /
00696 endcolor = GraphColors('gconramp2cend')
00697 startcolor = GraphColors('gconramp2cstart');
00698 style ThreeColorRamp from GraphComponent /
00699 endcolor = GraphColors('gramp3cend')
00700 neutralcolor = GraphColors('gramp3cneutral')
00701 startcolor = GraphColors('gramp3cstart');
00702 style ThreeColorAltRamp from GraphComponent /
00703 endcolor = GraphColors('gconramp3cend')
00704 neutralcolor = GraphColors('gconramp3cneutral')
00705 startcolor = GraphColors('gconramp3cstart');
00706 style StatGraphInsetBackground from GraphComponent /
00707 transparency = .25
00708 background = GraphColors('ginset');
00709 style StatGraphInsetHeaderBackground from GraphComponent /
00710 transparency = .25
00711 background = GraphColors('ginsetheader');
00712 style StatGraphData from GraphComponent /
00713 markersymbol = "circlefilled"
00714 linestyle = 1
00715 contrastcolor = GraphColors('gcdata')
00716 foreground = GraphColors('gdata');
00717 style StatGraphOutlierData from GraphComponent /
00718 markersize = 3px
00719 markersymbol = "X"
00720 transparency = 0.00
00721 contrastcolor = GraphColors('gcoutlier')
00722 foreground = GraphColors('goutlier');
00723 style StatGraphFitLine from GraphComponent /
00724 transparency = 0.00
00725 linethickness = 2px
00726 linestyle = 1
00727 contrastcolor = GraphColors('gcfit')
00728 foreground = GraphColors('gfit');
00729 style StatGraphConfidence from GraphComponent
00730 "Foreground for band fill;ContrastColor for lines" /
00731 transparency = 0.50
00732 linethickness = 1px
00733 linestyle = 34
00734 contrastcolor = GraphColors('gcconfidence')
00735 foreground = GraphColors('gconfidence');
00736 style StatGraphPredictionLines from GraphComponent /
00737 transparency = 0.00
00738 linethickness = 3px
00739 linestyle = 35
00740 contrastcolor = GraphColors('gcpredict')
00741 foreground = GraphColors('gpredict');
00742 style StatGraphPredictionLimit from GraphComponent /
00743 transparency = 0.00
00744 contrastcolor = GraphColors('gcpredictlim')
00745 foreground = GraphColors('gpredictlim');
00746 style StatGraphError from GraphComponent
00747 "Foreground for error fill;ContrastColor for lines" /
00748 transparency = 0.00
00749 linethickness = 1px
00750 linestyle = 5
00751 contrastcolor = GraphColors('gcerror')
00752 foreground = GraphColors('gerror');
00753 style LayoutContainer from GraphComponent
00754 "Container for LAYOUT" /
00755 cellpadding = 0
00756 cellspacing = 30
00757 borderwidth = 0
00758 frame = void
00759 rules = none
00760 background = _undef_;
00761 style LayoutRegion from LayoutContainer
00762 "Region style for LAYOUT cells";
00763 style blindTable from table "Table that appears like background" /
00764 cellspacing=0
00765 borderwidth=0px
00766 background=colors('docbg')
00767 ;
00768 style blindData from data "Data cell in a blind Table" /
00769 borderwidth=0px
00770 background=colors('docbg')
00771 ;
00772 style blindHeader from header "Header cell in a blind Table" /
00773 borderwidth=0px
00774 background=colors('docbg')
00775 foreground=colors('docbg')
00776 fontsize=0.5pt
00777 ;
00778 style blindCaption from blindData "Caption row in a blind Table" /
00779 font=fonts('TitleFont2')
00780 foreground=colors('captionfg')
00781 ;
00782 style blindDataStrong from DataStrong "Strong data cell in a blind Table" /
00783 foreground=colors('datafgstrong')
00784 borderwidth=0px
00785 background=colors('docbg')
00786 ;
00787 style tcgCoveredData "data cell with covered code in tcg report" /
00788 foreground=color_list('fgTcgCovered')
00789 ;
00790 style tcgNonCoveredData "data cell with non-covered code in tcg report" /
00791 foreground=color_list('fgTcgNonCovered')
00792 ;
00793 style tcgCommentData "data cell with commented code in tcg report" /
00794 foreground=color_list('fgTcgComment')
00795 ;
00796 style tcgNonContribData "data cell with non-contributing code in tcg report" /
00797 foreground=color_list('fgTcgNonContrib')
00798 ;
00799 style blindFixedFontData from blindData "Fixed font data cell in a blind Table" /
00800 font =fonts('BatchFixedFont');
00801 ;
00802 style logerrcountmsg from blindData "Count of scenario error messages in test case overview" /
00803 foreground=color_list('fgErrorCount')
00804 font_weight = Bold
00805 ;
00806 style datacolumnerror "Renders an error in a column" /
00807 foreground=color_list('fgErrorCount')
00808 borderwidth=0px
00809 borderspacing=0px
00810 ;
00811 style tablesorterheader "Tablesorter-header for jQuery TableSorter" /
00812 backgroundimage = "data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw=="
00813 backgroundrepeat = NO_REPEAT
00814 BACKGROUNDPOSITION = right
00815 paddingtop = 4px
00816 paddingleft = 4px
00817 paddingright = 18px
00818 paddingbottom = 4px
00819 ;
00820 style headerSortUp "HeaderSortUp for jQuery TableSorter" /
00821 backgroundimage = "data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7"
00822 ;
00823 style tablesorterheaderSortUp "Ablesorter-headerSortUp for jQuery TableSorter" /
00824 backgroundimage = "data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7"
00825 ;
00826 style tablesorterheaderAsc "Tablesorter-headerAsc for jQuery TableSorter" /
00827 backgroundimage = "data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7"
00828 ;
00829 style headerSortDown "HeaderSortDown for jQuery TableSorter" /
00830 backgroundimage = "data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7"
00831 ;
00832 style tablesorterheaderSortDown "Tablesorter-headerSortDown for jQuery TableSorter" /
00833 backgroundimage = "data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7"
00834 ;
00835 style tablesorterheaderDesc "Tablesorter-headerDesc for jQuery TableSorter" /
00836 backgroundimage = "data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7"
00837 ;
00838 style pgmDocHeader from Header "Header of pgmdoc report" /
00839 foreground=colors('datafg')
00840 background=colors('databg')
00841 ;
00842 style pgmDocTodoHeader from Header "Header of ToDo section in pgmdoc report" /
00843 background=color_list('bgPgmDocTodo')
00844 ;
00845 style pgmDocTestHeader from Header "Header of Test section in pgmdoc report" /
00846 background=color_list('bgPgmDocTest')
00847 ;
00848 style pgmDocBugHeader from Header "Header of Bug section in pgmdoc report" /
00849 background=color_list('bgPgmDocBug')
00850 ;
00851 style pgmDocRemarkHeader from Header "Header of Remark section in pgmdoc report" /
00852 background=color_list('bgPgmDocRemark')
00853 ;
00854 style pgmDocDepHeader from Header "Header of Deprecated section in pgmdoc report" /
00855 foreground=color_list('fgPgmDocDep')
00856 background=color_list('bgPgmDocDep')
00857 ;
00858 style pgmDocData from Data "data cell of pgmdoc report" /
00859 foreground=colors('datafg')
00860 background=colors('docbg')
00861 ;
00862 style pgmDocDataStrong from DataStrong "strong data cell of pgmdoc report" /
00863 foreground=colors('datafg')
00864 background=colors('docbg')
00865 ;
00866 style pgmDocSource from blindFixedFontData "strong data cell of pgmdoc report" /
00867 foreground=color_list('fgPgmDocSource')
00868 ;
00869 style pgmDocBlindData from blindData "data cell of pgmdoc report" /
00870 foreground=colors('datafg')
00871 background=colors('docbg')
00872 ;
00873 style pgmDocBlindDataStrong from blindDataStrong "strong data cell of pgmdoc report" /
00874 background=colors('docbg')
00875 ;
00876 style pgmDocTodoData from pgmDocTodoHeader "data cell of ToDo section in pgmdoc report" /
00877 borderwidth=0px
00878 font_weight=medium
00879 ;
00880 style pgmDocTestData from pgmDocTestHeader "data cell of Test section in pgmdoc report" /
00881 borderwidth=0px
00882 font_weight=medium
00883 ;
00884 style pgmDocBugData from pgmDocBugHeader "data cell of Bug section in pgmdoc report" /
00885 borderwidth=0px
00886 font_weight=medium
00887 ;
00888 style pgmDocRemarkData from pgmDocRemarkHeader "data cell of Remark section in pgmdoc report" /
00889 borderwidth=0px
00890 font_weight=medium
00891 ;
00892 style pgmDocDepData from pgmDocDepHeader "data cell of Deprecated section in pgmdoc report" /
00893 borderwidth=0px
00894 font_weight=medium
00895 ;
00896 end;
00897  
00898 define style Styles.SASUNIT;
00899 style fonts
00900 "Fonts used in the default style" /
00901 'TitleFont' = ("Geneva, Arial, Helvetica, sans-serif",16pt,Bold)
00902 'TitleFont2' = ("Geneva, Arial, Helvetica, sans-serif",12pt,Bold)
00903 'TitleFont3' = ("Geneva, Arial, Helvetica, sans-serif",10pt,Bold)
00904 'StrongFont' = ("Geneva, Arial, Helvetica, sans-serif", 9pt,Bold)
00905 'EmphasisFont' = ("Geneva, Arial, Helvetica, sans-serif",9pt,Italic)
00906 'FixedEmphasisFont' = ("<monospace>, Courier, monospace",9pt,Italic)
00907 'FixedStrongFont' = ("<monospace>, Courier, monospace",9pt,Bold)
00908 'FixedHeadingFont' = ("<monospace>, Courier, monospace",9pt)
00909 'BatchFixedFont' = ("SAS Monospace, <monospace>, Courier, monospace", 9pt)
00910 'FixedFont' = ("<monospace>, Courier",9pt)
00911 'headingEmphasisFont' = ("Geneva, Arial, Helvetica, sans-serif",9pt,Bold Italic)
00912 'headingFont' = ("Geneva, Arial, Helvetica, sans-serif",9pt,Bold)
00913 'docFont' = ("Geneva, Arial, Helvetica, sans-serif",9pt);
00914 style GraphFonts
00915 "Fonts used in graph styles" /
00916 'GraphDataFont' = ("Arial",8pt)
00917 'GraphValueFont' = ("Arial",10pt)
00918 'GraphLabelFont' = ("Arial",12pt,Bold)
00919 'GraphFootnoteFont' = ("Arial",12pt,Bold)
00920 'GraphTitleFont' = ("Arial",14pt,Bold);
00921 style color_list
00922 "Colors used in the default style" /
00923 /* Notes, Titles, Document */
00924 'fgA' = cx002288
00925 'bgA' = white
00926 /* Table */
00927 'fgA1' = cx000000
00928 'bgA1' = white
00929 /* Header */
00930 'fgA2' = cx0033AA
00931 'bgA2' = white
00932 /* Data Cells */
00933 'fgA3' = black
00934 'bgA3' = white
00935 /* Header border */
00936 'fgA4' = cx84B0C7
00937 /* Table border*/
00938 'bgA4' = cxCCCCCC
00939 /* Links */
00940 'fgB1' = cx000080
00941 'bgB1' = cxe8eef2
00942 /* not used */
00943 'fgB2' = cx0066AA
00944 'bgB2' = cxe8eef2
00945 /* Testcoverage */
00946 'fgTcgCovered' = cx00BE00
00947 'fgTcgNonCovered' = cxFF8020
00948 'fgTcgComment' = cx828282
00949 'fgTcgNonContrib' = cx8020FF
00950 'fgErrorCount' = red
00951 /* Program documentation */
00952 'bgPgmDocTodo' = Bisque
00953 'bgPgmDocTest' = LightBlue
00954 'bgPgmDocBug' = LightCoral
00955 'bgPgmDocRemark' = LightGreen
00956 'fgPgmDocDep' = white
00957 'bgPgmDocDep' = cx808080
00958 'fgPgmDocSource' = cx606060
00959 ;
00960 style colors
00961 "Abstract colors used in the default style" /
00962 'headerfgemph' = color_list('fgA2')
00963 'headerbgemph' = cxd7dde1
00964 'headerfgstrong' = color_list('fgA2')
00965 'headerbgstrong' = cxd7dde1
00966 'headerfg' = color_list('fgA2')
00967 'headerbg' = color_list('bgA2')
00968 'headerborder' = color_list('fgA4')
00969 'datafgemph' = color_list('fgA3')
00970 'databgemph' = color_list('bgA3')
00971 'datafgstrong' = color_list('fgA3')
00972 'databgstrong' = color_list('bgA3')
00973 'datafg' = color_list('fgA3')
00974 'databg' = color_list('bgA3')
00975 'batchfg' = color_list('fgA1')
00976 'batchbg' = color_list('bgA3')
00977 'tableborder' = color_list('bgA4')
00978 'tablebg' = color_list('bgA1')
00979 'notefg' = color_list('fgA')
00980 'notebg' = color_list('bgA')
00981 'bylinefg' = color_list('fgA2')
00982 'bylinebg' = color_list('bgA2')
00983 'captionfg' = color_list('fgA1')
00984 'captionbg' = color_list('bgA')
00985 'proctitlefg' = color_list('fgA')
00986 'proctitlebg' = color_list('bgA')
00987 'titlefg' = color_list('fgA')
00988 'titlebg' = color_list('bgA')
00989 'systitlefg' = black
00990 'systitlebg' = color_list('bgA')
00991 'Conentryfg' = color_list('fgA2')
00992 'Confolderfg' = color_list('fgA')
00993 'Contitlefg' = color_list('fgA')
00994 'link2' = color_list('fgB1')
00995 'link1' = color_list('fgB1')
00996 'contentfg' = color_list('fgA2')
00997 'contentbg' = color_list('bgA2')
00998 'docfg' = color_list('fgA')
00999 'docbg' = color_list('bgA')
01000 ;
01001 style GraphColors
01002 "Abstract colors used in graph styles" /
01003 'gcerror' = cx000000
01004 'gerror' = cxB9CFE7
01005 'gcpredictlim' = cx003178
01006 'gpredictlim' = cxB9CFE7
01007 'gcpredict' = cx003178
01008 'gpredict' = cx003178
01009 'gcconfidence' = cx003178
01010 'gconfidence' = cxB9CFE7
01011 'gcfit' = cx003178
01012 'gfit' = cx003178
01013 'gcoutlier' = cx000000
01014 'goutlier' = cxB9CFE7
01015 'gcdata' = cx000000
01016 'gdata' = cxB9CFE7
01017 'ginsetheader' = colors('docbg')
01018 'ginset' = cxFFFFFF
01019 'greferencelines' = cx808080
01020 'gheader' = colors('docbg')
01021 'gconramp3cend' = cxFF0000
01022 'gconramp3cneutral' = cxFF00FF
01023 'gconramp3cstart' = cx0000FF
01024 'gramp3cend' = cxDD6060
01025 'gramp3cneutral' = cxFFFFFF
01026 'gramp3cstart' = cx6497EB
01027 'gconramp2cend' = cx6497EB
01028 'gconramp2cstart' = cxFFFFFF
01029 'gramp2cend' = cx5E528B
01030 'gramp2cstart' = cxFFFFFF
01031 'gtext' = cx000000
01032 'glabel' = cx000000
01033 'gborderlines' = cx000000
01034 'goutlines' = cx000000
01035 'ggrid' = cx808080
01036 'gaxis' = cx000000
01037 'gshadow' = cx000000
01038 'glegend' = cxFFFFFF
01039 'gfloor' = cxFFFFFF
01040 'gwalls' = cxFFFFFF
01041 'gcdata12' = cxF7AC4E
01042 'gcdata11' = cxB38EF3
01043 'gcdata10' = cx47A82A
01044 'gcdata9' = cxC08A13
01045 'gcdata8' = cx2597FA
01046 'gcdata7' = cxB26084
01047 'gcdata6' = cx7F8E1F
01048 'gcdata5' = cx9D3CDB
01049 'gcdata4' = cxC1161C
01050 'gcdata3' = cx426952
01051 'gcdata2' = cx763810
01052 'gcdata1' = cx2A25D9
01053 'gdata12' = cx7F5934
01054 'gdata11' = cxC8573C
01055 'gdata10' = cx679920
01056 'gdata9' = cx5E528B
01057 'gdata8' = cxD6C66E
01058 'gdata7' = cxB87F32
01059 'gdata6' = cx6F7500
01060 'gdata5' = cx8AA4C9
01061 'gdata4' = cxFDC861
01062 'gdata3' = cx98341C
01063 'gdata2' = cx8DA642
01064 'gdata1' = cx6173A9;
01065 style html
01066 "Common HTML text used in the default style" /
01067 'expandAll' = "<span onclick=""if(msie4==1)expandAll()"">"
01068 'posthtml flyover line' = "</span><hr size=""3"">"
01069 'prehtml flyover line' = "<span><hr size=""3"">"
01070 'prehtml flyover bullet' = %nrstr("<span><b>&#183;</b>")
01071 'posthtml flyover' = "</span>"
01072 'prehtml flyover' = "<span>"
01073 'break' = "<br>"
01074 'Line' = "<hr size=""3"">"
01075 'PageBreakLine' = "<p style=""page-break-after: always;""><br></p><hr size=""3"">"
01076 'fake bullet' = %nrstr("<b>&#183;</b>")
01077 ;
01078 style text
01079 "Common text." /
01080 'Fatal Banner' = "Fatal:"
01081 'Error Banner' = "Error:"
01082 'Warn Banner' = "Warning:"
01083 'Note Banner' = "Note:"
01084 'Pages Title' = "Table of Pages"
01085 'Content Title' = "Table of Contents"
01086 'suffix1' = " Procedure"
01087 'prefix1' = "The ";
01088 style StartUpFunction
01089 "Controls the StartUp Function. TAGATTR is only element used.";
01090 style ShutDownFunction
01091 "Controls the Shut-Down Function. TAGATTR is only element used.";
01092 style Container
01093 "Abstract. Controls all container oriented elements." /
01094 font = Fonts('DocFont')
01095 foreground = colors('docfg')
01096 background = colors('docbg');
01097 style Index from Container
01098 "Abstract. Controls Contents and Pages." /
01099 foreground = colors('contentfg')
01100 background = colors('contentbg');
01101 style Document from Container
01102 "Abstract. Controls the various document bodies." /
01103 htmldoctype = "<!DOCTYPE HTML PUBLIC ""-//W3C//DTD HTML 3.2 Final//EN"">"
01104 htmlcontenttype = "text/html"
01105 protectspecialchars = auto
01106 linkcolor = colors('link1')
01107 activelinkcolor = colors('link1')
01108 visitedlinkcolor = colors('link1')
01109 textdecoration = _undef_
01110 outputwidth = 95%
01111 ;
01112 style Body from Document
01113 "Controls the Body file." /
01114 rightmargin = 8
01115 leftmargin = 8
01116 pagebreakhtml = _undef_ /*html('PageBreakLine')*/
01117 ;
01118 style Frame from Document
01119 "Controls the Frame file." /
01120 contentposition = L
01121 bodyscrollbar = auto
01122 bodysize = *
01123 contentscrollbar = auto
01124 contentsize = 23%
01125 framespacing = 1
01126 frameborderwidth = 4
01127 frameborder = on;
01128 style Contents from Document
01129 "Controls the Contents file." /
01130 bullet = "decimal"
01131 tagattr = " onload=""if (msie4 == 1)expandAll()"""
01132 pagebreakhtml = html('break')
01133 foreground = colors('contentfg')
01134 background = colors('contentbg')
01135 rightmargin = 8
01136 leftmargin = 8;
01137 style Pages from Document
01138 "Controls the Pages file." /
01139 bullet = "decimal"
01140 tagattr = " onload=""if (msie4 == 1)expandAll()"""
01141 pagebreakhtml = html('break')
01142 foreground = colors('contentfg')
01143 background = colors('contentbg')
01144 rightmargin = 8
01145 leftmargin = 8;
01146 style Date from Container
01147 "Abstract. Controls how date fields look." /
01148 outputwidth = 95%
01149 background = colors('contentbg')
01150 foreground = colors('contentfg');
01151 style BodyDate from Date
01152 "Controls the date field in the Body file." /
01153 vjust = T
01154 just = R
01155 cellspacing = 0
01156 cellpadding = 0
01157 background = colors('docbg')
01158 foreground = colors('docfg');
01159 style ContentsDate from Date
01160 "Controls the date in the Contents file.";
01161 style PagesDate from Date
01162 "Controls the date in the Pages file.";
01163 style IndexItem from Container
01164 "Abstract. Controls list items and folders for Contents and Pages." /
01165 leftmargin = 6pt
01166 posthtml = html('posthtml flyover')
01167 prehtml = html('prehtml flyover bullet')
01168 listentryanchor = on
01169 bullet = NONE
01170 background = _undef_
01171 foreground = colors('conentryfg');
01172 style ContentFolder from IndexItem
01173 "Controls the generic folder definition in the Contents file." /
01174 listentryanchor = off
01175 foreground = colors('confolderfg');
01176 style ByContentFolder from ContentFolder
01177 "Controls the byline folder in the Contents file.";
01178 style ContentItem from IndexItem
01179 "Controls the leafnode item in the Contents file.";
01180 style PagesItem from IndexItem
01181 "Controls the leafnode item in the Pages file.";
01182 style IndexProcName from Index
01183 "Abstract. Controls the proc name in the list files." /
01184 listentryanchor = off
01185 bullet = "decimal"
01186 posthtml = html('posthtml flyover')
01187 prehtml = html('prehtml flyover')
01188 posttext = text('suffix1')
01189 pretext = text('prefix1')
01190 background = _undef_
01191 foreground = colors('contitlefg');
01192 style ContentProcName from IndexProcName
01193 "Controls the proc name in the Contents file.";
01194 style ContentProcLabel from ContentProcName
01195 "Controls the proc label in the Contents file." /
01196 posttext = _undef_
01197 pretext = _undef_;
01198 style PagesProcName from IndexProcName
01199 "Controls the proc name in the Pages file.";
01200 style PagesProcLabel from PagesProcName
01201 "Controls the proc label in the Pages file." /
01202 posttext = _undef_
01203 pretext = _undef_;
01204 style IndexAction from IndexItem
01205 "Abstract. Determines what happens on mouse-over events for folders and items.";
01206 style FolderAction from IndexAction
01207 "Determines what happens on mouse-over events for folders.";
01208 style IndexTitle from Index
01209 "Abstract. Controls the title of Contents and Pages files." /
01210 posthtml = html('posthtml flyover line')
01211 prehtml = html('expandAll')
01212 font = fonts('EmphasisFont')
01213 background = _undef_
01214 foreground = colors('contitlefg');
01215 style ContentTitle from IndexTitle
01216 "Controls the title of the Contents file." /
01217 pretext = text('content title');
01218 style PagesTitle from IndexTitle
01219 "Controls the title of the Pages file." /
01220 pretext = text('pages title');
01221 style SysTitleAndFooterContainer from Container
01222 "Controls container for system page title and system page footer." /
01223 rules = NONE
01224 frame = VOID
01225 outputwidth = 95%
01226 cellpadding = 1
01227 cellspacing = 1
01228 borderwidth = 0;
01229 style TitleAndNoteContainer from Container
01230 "Controls container for procedure defined titles and notes." /
01231 rules = NONE
01232 frame = VOID
01233 outputwidth = 95%
01234 cellpadding = 1
01235 cellspacing = 1
01236 borderwidth = 0;
01237 style TitlesAndFooters from Container
01238 "Abstract. Controls system page title text and system page footer text." /
01239 font = Fonts('TitleFont2')
01240 background = colors('systitlebg')
01241 foreground = colors('systitlefg');
01242 style BylineContainer from Container
01243 "Controls container for the byline." /
01244 background = colors('Docbg')
01245 rules = NONE
01246 frame = VOID
01247 outputwidth = 95%
01248 cellpadding = 1
01249 cellspacing = 1
01250 borderwidth = 0;
01251 style SystemTitle from TitlesAndFooters
01252 "Controls system title text." /
01253 font = Fonts('TitleFont');
01254 style SystemFooter from TitlesAndFooters
01255 "Controls system footer text." /
01256 font = Fonts('TitleFont')
01257 fontsize = 9pt;
01258 style PageNo from TitlesAndFooters
01259 "Controls page numbers for printer" /
01260 vjust = T
01261 just = R
01262 cellspacing = 0
01263 cellpadding = 0
01264 font = fonts('strongFont');
01265 style ExtendedPage from TitlesAndFooters
01266 "Msg when page won't fit." /
01267 just = C
01268 cellpadding = 2pt
01269 borderwidth = 1pt
01270 fillrulewidth = 0.5pt
01271 posttext = ", which would not fit on a single physical page"
01272 pretext = "Continuing contents of page "
01273 frame = box
01274 font = fonts('EmphasisFont');
01275 style Byline from TitlesAndFooters
01276 "Controls byline text." /
01277 cellspacing = 0
01278 cellpadding = 0
01279 font = fonts('headingFont')
01280 background = colors('bylinebg')
01281 foreground = colors('bylinefg');
01282 style ProcTitle from TitlesAndFooters
01283 "Controls procedure title text." /
01284 background = colors('proctitlebg')
01285 foreground = colors('proctitlefg');
01286 style ProcTitleFixed from ProcTitle
01287 "Controls procedure title text, fixed font." /
01288 font = fonts('FixedStrongFont');
01289 style Output from Container
01290 "Abstract. Controls basic output forms." /
01291 background = colors('tablebg')
01292 rules = ALL
01293 frame = box
01294 cellpadding = 7
01295 cellspacing = 1
01296 bordercolor = colors('tableborder')
01297 borderwidth = 1px;
01298 style Table from Output
01299 "Controls overall table style." /
01300 cellpadding = 0px
01301 cellspacing = 0px
01302 Borderwidth = 0px
01303 background = colors('tablebg')
01304 borderspacing = 0px
01305 bordercolor = colors('tableborder')
01306 borderbottomcolor = colors('headerborder')
01307 borderbottomwidth = 1px
01308 ;
01309 style Batch from Output
01310 "Controls batch mode output." /
01311 font = fonts('BatchFixedFont')
01312 foreground = colors('batchfg')
01313 background = colors('batchbg');
01314 style Note from Container
01315 "Abstract. Controls the container for note banners and note contents." /
01316 background = colors('notebg')
01317 foreground = colors('notefg');
01318 style NoteBanner from Note
01319 "Controls the banner for NOTE:s." /
01320 font_weight = Bold
01321 pretext = text('Note Banner');
01322 style NoteContent from Note
01323 "Controls the contents for NOTE:s.";
01324 style UserText from Note
01325 "Controls the TEXT= style";
01326 style NoteContentFixed from NoteContent
01327 "Controls the contents for NOTE:s. Fixed font." /
01328 font = fonts('FixedFont');
01329 style WarnBanner from Note
01330 "Controls the banner for WARNING:s." /
01331 font_weight = Bold
01332 pretext = text('Warn Banner');
01333 style WarnContent from Note
01334 "Controls the contents of WARNING:s.";
01335 style WarnContentFixed from WarnContent
01336 "Controls the contents for WARNING:s. Fixed font." /
01337 font = fonts('FixedFont');
01338 style ErrorBanner from Note
01339 "Controls the banner for ERROR:s." /
01340 font_weight = Bold
01341 pretext = text('Error Banner');
01342 style ErrorContent from Note
01343 "Controls the contents of ERROR:s.";
01344 style ErrorContentFixed from ErrorContent
01345 "Controls the contents for ERROR:s. Fixed font." /
01346 font = fonts('FixedFont');
01347 style FatalBanner from Note
01348 "Controls the banner for FATAL:s." /
01349 font_weight = Bold
01350 pretext = text('Fatal Banner');
01351 style FatalContent from Note
01352 "Controls the contents of FATAL:s.";
01353 style FatalContentFixed from FatalContent
01354 "Controls the contents for FATAL:s. Fixed font." /
01355 font = fonts('FixedFont');
01356 style Cell from Container
01357 "Abstract. Controls general cells." /
01358 paddingtop = 2px
01359 paddingleft = 10px
01360 paddingright = 10px
01361 paddingbottom = 2px
01362 borderwidth = 0px
01363 ;
01364 style Data from Cell
01365 "Default style for data cells in columns." /
01366 foreground = colors('datafg')
01367 background = colors('databg')
01368 verticalalign = middle
01369 ;
01370 style DataFixed from Data
01371 "Default style for data cells in columns. Fixed font." /
01372 font = fonts('FixedFont');
01373 style DataEmpty from Data
01374 "Controls empty data cells in columns.";
01375 style DataEmphasis from Data
01376 "Controls emphasized data cells in columns." /
01377 foreground = colors('datafgemph')
01378 background = colors('databgemph')
01379 font = fonts('EmphasisFont');
01380 style DataEmphasisFixed from DataEmphasis
01381 "Controls emphasized data cells in columns. Fixed font." /
01382 font = fonts('FixedEmphasisFont');
01383 style DataStrong from Data
01384 "Controls strong (more emphasized)data cells in columns." /
01385 foreground = colors('datafgstrong')
01386 background = colors('databgstrong')
01387 font = fonts('StrongFont');
01388 style DataStrongFixed from DataStrong
01389 "Controls strong (more emphasized)data cells in columns. Fixed font." /
01390 font = fonts('FixedStrongFont');
01391 style TableHeaderContainer from Container
01392 " Box around all column headers. " /
01393 abstract = on;
01394 style TableFooterContainer from Container
01395 " Box around all column footers. " /
01396 abstract = on;
01397 style ColumnGroup from Container
01398 " Box around groups of columns. This corresponds to RULES=GROUPS " /
01399 abstract = on;
01400 style HeadersAndFooters from Cell
01401 "Abstract. Controls table headers and footers." /
01402 font = fonts('HeadingFont')
01403 foreground = colors('headerfg')
01404 background = colors('headerbg')
01405 ;
01406 style Caption from HeadersAndFooters
01407 "Abstract. Controls caption field in proc tabulate." /
01408 cellspacing = 0
01409 cellpadding = 0
01410 foreground = colors('captionfg')
01411 background = colors('captionbg');
01412 style BeforeCaption from Caption
01413 "Caption that comes before a table.";
01414 style AfterCaption from Caption
01415 "Caption that comes after a table.";
01416 style Header from HeadersAndFooters
01417 "Controls the headers of a table." /
01418 foreground = black
01419 borderbottomcolor = colors('headerborder')
01420 borderbottomwidth = 2px
01421 bordertopcolor = colors('headerborder')
01422 bordertopwidth = 1px
01423 ;
01424 style HeaderFixed from Header
01425 "Controls the header of a table. Fixed font." /
01426 font = fonts('FixedFont');
01427 style HeaderEmpty from Header
01428 "Controls empty table header cells.";
01429 style HeaderEmphasis from Header
01430 "Controls emphasized table header cells." /
01431 foreground = colors('headerfgemph')
01432 background = colors('headerbgemph')
01433 font = fonts('EmphasisFont');
01434 style HeaderEmphasisFixed from HeaderEmphasis
01435 "Controls emphasized table header cells. Fixed font." /
01436 font = fonts('FixedEmphasisFont');
01437 style HeaderStrong from Header
01438 "Controls strong (more emphasized)table header cells." /
01439 foreground = colors('headerfgstrong')
01440 background = colors('headerbgstrong')
01441 font = fonts('StrongFont');
01442 style HeaderStrongFixed from HeaderStrong
01443 "Controls strong (more emphasized)table header cells. Fixed font." /
01444 font = fonts('FixedStrongFont');
01445 style RowHeader from Header
01446 "Controls row headers." /
01447 background = color_list('bgA3')
01448 vjust = middle
01449 borderbottomwidth = 0px
01450 bordertopwidth = 0px
01451 ;
01452 style RowHeaderFixed from RowHeader
01453 "Controls row headers. Fixed font." /
01454 font = fonts('FixedFont');
01455 style RowHeaderEmpty from RowHeader
01456 "Controls empty row headers.";
01457 style RowHeaderEmphasis from RowHeader
01458 "Controls emphasized row headers." /
01459 font = fonts('EmphasisFont');
01460 style RowHeaderEmphasisFixed from RowHeaderEmphasis
01461 "Controls emphasized row headers. Fixed font." /
01462 font = fonts('FixedEmphasisFont');
01463 style RowHeaderStrong from RowHeader
01464 "Controls strong (more emphasized)row headers." /
01465 font = fonts('StrongFont');
01466 style RowHeaderStrongFixed from RowHeaderStrong
01467 "Controls strong (more emphasized)row headers. Fixed font." /
01468 font = fonts('FixedStrongFont');
01469 style Footer from HeadersAndFooters
01470 "Controls table footers.";
01471 style FooterFixed from Footer
01472 "Controls table footers. Fixed font." /
01473 font = fonts('FixedFont');
01474 style FooterEmpty from Footer
01475 "Controls empty table footers.";
01476 style FooterEmphasis from Footer
01477 "Controls emphasized table footers." /
01478 font = fonts('EmphasisFont');
01479 style FooterEmphasisFixed from FooterEmphasis
01480 "Controls emphasized table footers. Fixed font." /
01481 font = fonts('FixedEmphasisFont');
01482 style FooterStrong from Footer
01483 "Controls strong (more emphasized)table footers." /
01484 font = fonts('StrongFont');
01485 style FooterStrongFixed from FooterStrong
01486 "Controls strong (more emphasized)table footers. Fixed font." /
01487 font = fonts('FixedStrongFont');
01488 style RowFooter from Footer
01489 "Controls a row footer (label).";
01490 style RowFooterFixed from RowFooter
01491 "Controls a row footer (label). Fixed font." /
01492 font = fonts('FixedFont');
01493 style RowFooterEmpty from RowFooter
01494 "Controls an empty row footer (label).";
01495 style RowFooterEmphasis from RowFooter
01496 "Controls an emphasized row footer (label)." /
01497 font = fonts('EmphasisFont');
01498 style RowFooterEmphasisFixed from RowFooterEmphasis
01499 "Controls an emphasized row footer (label). Fixed font." /
01500 font = fonts('FixedEmphasisFont');
01501 style RowFooterStrong from RowFooter
01502 "Controls a strong (more emphasized)row footer (label)." /
01503 font = fonts('StrongFont');
01504 style RowFooterStrongFixed from RowFooterStrong
01505 "Controls a strong (more emphasized)row footer (label). Fixed font." /
01506 font = fonts('FixedStrongFont');
01507 style Graph from Output
01508 "Control rudimentary graph output." /
01509 cellpadding = 0
01510 background = colors('docbg');
01511 style GraphComponent /
01512 abstract = on;
01513 style GraphCharts from GraphComponent;
01514 style GraphWalls from GraphComponent /
01515 background = GraphColors('gwalls');
01516 style GraphAxisLines from GraphComponent /
01517 foreground = GraphColors('gaxis');
01518 style GraphGridLines from GraphComponent /
01519 foreground = GraphColors('ggrid');
01520 style GraphOutlines from GraphComponent /
01521 foreground = GraphColors('goutlines');
01522 style GraphBorderLines from GraphComponent /
01523 foreground = GraphColors('gborderlines');
01524 style GraphReferenceLines from GraphComponent /
01525 foreground = GraphColors('greferencelines');
01526 style GraphTitleText from GraphComponent /
01527 font = GraphFonts('GraphTitleFont')
01528 foreground = GraphColors('gtext');
01529 style GraphFootnoteText from GraphComponent /
01530 font = GraphFonts('GraphFootnoteFont')
01531 foreground = GraphColors('gtext');
01532 style GraphDataText from GraphComponent /
01533 font = GraphFonts('GraphDataFont')
01534 foreground = GraphColors('gtext');
01535 style GraphLabelText from GraphComponent /
01536 font = GraphFonts('GraphLabelFont')
01537 foreground = GraphColors('glabel');
01538 style GraphValueText from GraphComponent /
01539 font = GraphFonts('GraphValueFont')
01540 foreground = GraphColors('gtext');
01541 style GraphBackground from GraphComponent /
01542 background = colors('docbg');
01543 style GraphFloor from GraphComponent /
01544 background = GraphColors('gfloor');
01545 style GraphLegendBackground from GraphComponent /
01546 background = GraphColors('glegend');
01547 style GraphHeaderBackground from GraphComponent /
01548 background = GraphColors('gheader');
01549 style DropShadowStyle from GraphComponent /
01550 foreground = GraphColors('gshadow');
01551 style GraphDataDefault from GraphComponent /
01552 markersymbol = "circle"
01553 linestyle = 1
01554 contrastcolor = GraphColors('gcdata')
01555 foreground = GraphColors('gdata');
01556 style GraphData1 from GraphComponent /
01557 contrastcolor = GraphColors('gcdata1')
01558 foreground = GraphColors('gdata1');
01559 style GraphData2 from GraphComponent /
01560 contrastcolor = GraphColors('gcdata2')
01561 foreground = GraphColors('gdata2');
01562 style GraphData3 from GraphComponent /
01563 contrastcolor = GraphColors('gcdata3')
01564 foreground = GraphColors('gdata3');
01565 style GraphData4 from GraphComponent /
01566 contrastcolor = GraphColors('gcdata4')
01567 foreground = GraphColors('gdata4');
01568 style GraphData5 from GraphComponent /
01569 contrastcolor = GraphColors('gcdata5')
01570 foreground = GraphColors('gdata5');
01571 style GraphData6 from GraphComponent /
01572 contrastcolor = GraphColors('gcdata6')
01573 foreground = GraphColors('gdata6');
01574 style GraphData7 from GraphComponent /
01575 contrastcolor = GraphColors('gcdata7')
01576 foreground = GraphColors('gdata7');
01577 style GraphData8 from GraphComponent /
01578 contrastcolor = GraphColors('gcdata8')
01579 foreground = GraphColors('gdata8');
01580 style GraphData9 from GraphComponent /
01581 contrastcolor = GraphColors('gcdata9')
01582 foreground = GraphColors('gdata9');
01583 style GraphData10 from GraphComponent /
01584 contrastcolor = GraphColors('gcdata10')
01585 foreground = GraphColors('gdata10');
01586 style GraphData11 from GraphComponent /
01587 contrastcolor = GraphColors('gcdata11')
01588 foreground = GraphColors('gdata11');
01589 style GraphData12 from GraphComponent /
01590 contrastcolor = GraphColors('gcdata12')
01591 foreground = GraphColors('gdata12');
01592 style TwoColorRamp from GraphComponent /
01593 endcolor = GraphColors('gramp2cend')
01594 startcolor = GraphColors('gramp2cstart');
01595 style TwoColorAltRamp from GraphComponent /
01596 endcolor = GraphColors('gconramp2cend')
01597 startcolor = GraphColors('gconramp2cstart');
01598 style ThreeColorRamp from GraphComponent /
01599 endcolor = GraphColors('gramp3cend')
01600 neutralcolor = GraphColors('gramp3cneutral')
01601 startcolor = GraphColors('gramp3cstart');
01602 style ThreeColorAltRamp from GraphComponent /
01603 endcolor = GraphColors('gconramp3cend')
01604 neutralcolor = GraphColors('gconramp3cneutral')
01605 startcolor = GraphColors('gconramp3cstart');
01606 style StatGraphInsetBackground from GraphComponent /
01607 transparency = .25
01608 background = GraphColors('ginset');
01609 style StatGraphInsetHeaderBackground from GraphComponent /
01610 transparency = .25
01611 background = GraphColors('ginsetheader');
01612 style StatGraphData from GraphComponent /
01613 markersymbol = "circlefilled"
01614 linestyle = 1
01615 contrastcolor = GraphColors('gcdata')
01616 foreground = GraphColors('gdata');
01617 style StatGraphOutlierData from GraphComponent /
01618 markersize = 3px
01619 markersymbol = "X"
01620 transparency = 0.00
01621 contrastcolor = GraphColors('gcoutlier')
01622 foreground = GraphColors('goutlier');
01623 style StatGraphFitLine from GraphComponent /
01624 transparency = 0.00
01625 linethickness = 2px
01626 linestyle = 1
01627 contrastcolor = GraphColors('gcfit')
01628 foreground = GraphColors('gfit');
01629 style StatGraphConfidence from GraphComponent
01630 "Foreground for band fill;ContrastColor for lines" /
01631 transparency = 0.50
01632 linethickness = 1px
01633 linestyle = 34
01634 contrastcolor = GraphColors('gcconfidence')
01635 foreground = GraphColors('gconfidence');
01636 style StatGraphPredictionLines from GraphComponent /
01637 transparency = 0.00
01638 linethickness = 3px
01639 linestyle = 35
01640 contrastcolor = GraphColors('gcpredict')
01641 foreground = GraphColors('gpredict');
01642 style StatGraphPredictionLimit from GraphComponent /
01643 transparency = 0.00
01644 contrastcolor = GraphColors('gcpredictlim')
01645 foreground = GraphColors('gpredictlim');
01646 style StatGraphError from GraphComponent
01647 "Foreground for error fill;ContrastColor for lines" /
01648 transparency = 0.00
01649 linethickness = 1px
01650 linestyle = 5
01651 contrastcolor = GraphColors('gcerror')
01652 foreground = GraphColors('gerror');
01653 style LayoutContainer from GraphComponent
01654 "Container for LAYOUT" /
01655 cellpadding = 0
01656 cellspacing = 30
01657 borderwidth = 0
01658 frame = void
01659 rules = none
01660 background = _undef_;
01661 style LayoutRegion from LayoutContainer
01662 "Region style for LAYOUT cells";
01663 style blindTable from table "Table that appears like background" /
01664 cellspacing = 0
01665 borderwidth = 0px
01666 borderbottomwidth = 0px
01667 background=colors('docbg')
01668 ;
01669 style blindData from data "Data cell in a blind Table" /
01670 borderwidth=0px
01671 background=colors('docbg')
01672 ;
01673 style blindHeader from header "Header cell in a blind Table" /
01674 borderwidth=0px
01675 borderbottomwidth=0px
01676 bordertopwidth=0px
01677 background=colors('docbg')
01678 foreground=colors('docbg')
01679 fontsize=0.5pt
01680 ;
01681 style blindCaption from blindData "Caption row in a blind Table" /
01682 font=fonts('TitleFont2')
01683 foreground=colors('captionfg')
01684 ;
01685 style blindDataStrong from DataStrong "Strong data cell in a blind Table" /
01686 foreground=colors('datafgstrong')
01687 borderwidth=0px
01688 background=colors('docbg')
01689 ;
01690 style tcgCoveredData "data cell with covered code in tcg report" /
01691 foreground=color_list('fgTcgCovered')
01692 ;
01693 style tcgNonCoveredData "data cell with non-covered code in tcg report" /
01694 foreground=color_list('fgTcgNonCovered')
01695 ;
01696 style tcgCommentData "data cell with commented code in tcg report" /
01697 foreground=color_list('fgTcgComment')
01698 ;
01699 style tcgNonContribData "data cell with non-contributing code in tcg report" /
01700 foreground=color_list('fgTcgNonContrib')
01701 ;
01702 style blindFixedFontData from blindData "Fixed font data cell in a blind Table" /
01703 font =fonts('BatchFixedFont');
01704 ;
01705 style logerrcountmsg from blindData "Count of scenario error messages in test case overview" /
01706 foreground=color_list('fgErrorCount')
01707 font_weight = Bold
01708 ;
01709 style datacolumnerror "Renders an error in a column" /
01710 foreground=color_list('fgErrorCount')
01711 borderwidth=0px
01712 borderspacing=0px
01713 ;
01714 style tablesorterheader "Tablesorter-header for jQuery TableSorter" /
01715 backgroundimage = "data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw=="
01716 backgroundrepeat = NO_REPEAT
01717 BACKGROUNDPOSITION = right
01718 paddingtop = 4px
01719 paddingleft = 4px
01720 paddingright = 18px
01721 paddingbottom = 4px
01722 ;
01723 style headerSortUp "HeaderSortUp for jQuery TableSorter" /
01724 backgroundimage = "data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7"
01725 ;
01726 style tablesorterheaderSortUp "Ablesorter-headerSortUp for jQuery TableSorter" /
01727 backgroundimage = "data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7"
01728 ;
01729 style tablesorterheaderAsc "Tablesorter-headerAsc for jQuery TableSorter" /
01730 backgroundimage = "data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7"
01731 ;
01732 style headerSortDown "HeaderSortDown for jQuery TableSorter" /
01733 backgroundimage = "data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7"
01734 ;
01735 style tablesorterheaderSortDown "Tablesorter-headerSortDown for jQuery TableSorter" /
01736 backgroundimage = "data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7"
01737 ;
01738 style tablesorterheaderDesc "Tablesorter-headerDesc for jQuery TableSorter" /
01739 backgroundimage = "data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7"
01740 ;
01741 style pgmDocHeader from Header "Header of pgmdoc report" /
01742 foreground=colors('datafg')
01743 background=colors('databg')
01744 ;
01745 style pgmDocTodoHeader from Header "Header of ToDo section in pgmdoc report" /
01746 background=color_list('bgPgmDocTodo')
01747 ;
01748 style pgmDocTestHeader from Header "Header of Test section in pgmdoc report" /
01749 background=color_list('bgPgmDocTest')
01750 ;
01751 style pgmDocBugHeader from Header "Header of Bug section in pgmdoc report" /
01752 background=color_list('bgPgmDocBug')
01753 ;
01754 style pgmDocRemarkHeader from Header "Header of Remark section in pgmdoc report" /
01755 background=color_list('bgPgmDocRemark')
01756 ;
01757 style pgmDocDepHeader from Header "Header of Deprecated section in pgmdoc report" /
01758 foreground=color_list('fgPgmDocDep')
01759 background=color_list('bgPgmDocDep')
01760 ;
01761 style pgmDocData from Data "data cell of pgmdoc report" /
01762 foreground=colors('datafg')
01763 background=colors('docbg')
01764 ;
01765 style pgmDocDataStrong from DataStrong "strong data cell of pgmdoc report" /
01766 foreground=colors('datafg')
01767 background=colors('docbg')
01768 ;
01769 style pgmDocSource from blindFixedFontData "strong data cell of pgmdoc report" /
01770 foreground=color_list('fgPgmDocSource')
01771 ;
01772 style pgmDocBlindData from blindData "data cell of pgmdoc report" /
01773 foreground=colors('datafg')
01774 background=colors('docbg')
01775 ;
01776 style pgmDocBlindDataStrong from blindDataStrong "strong data cell of pgmdoc report" /
01777 background=colors('docbg')
01778 ;
01779 style pgmDocTodoData from pgmDocTodoHeader "data cell of ToDo section in pgmdoc report" /
01780 borderwidth=0px
01781 borderbottomwidth=0px
01782 bordertopwidth=0px
01783 font_weight=medium
01784 ;
01785 style pgmDocTestData from pgmDocTestHeader "data cell of Test section in pgmdoc report" /
01786 borderwidth=0px
01787 borderbottomwidth=0px
01788 bordertopwidth=0px
01789 font_weight=medium
01790 ;
01791 style pgmDocBugData from pgmDocBugHeader "data cell of Bug section in pgmdoc report" /
01792 borderwidth=0px
01793 borderbottomwidth=0px
01794 bordertopwidth=0px
01795 font_weight=medium
01796 ;
01797 style pgmDocRemarkData from pgmDocRemarkHeader "data cell of Remark section in pgmdoc report" /
01798 borderwidth=0px
01799 borderbottomwidth=0px
01800 bordertopwidth=0px
01801 font_weight=medium
01802 ;
01803 style pgmDocDepData from pgmDocDepHeader "data cell of Deprecated section in pgmdoc report" /
01804 borderwidth=0px
01805 borderbottomwidth=0px
01806 bordertopwidth=0px
01807 font_weight=medium
01808 ;
01809 end;
01810 run;
01811 %mend;
01812