gr_pgvl.gml

来自「开放源码的编译器open watcom 1.6.0版的源代码」· GML 代码 · 共 40 行

GML
40
字号
.gfunc pg_vlabelchart
.if '&lang' eq 'C' .do begin
short _FAR _pg_vlabelchart( chartenv _FAR *env,
                            short x, short y,
                            short color,
                            char _FAR *label );
.do end
.el .do begin
integer*2 function _pg_vlabelchart( env, x, y,
                                    color, label )
record /chartenv/ env
integer*2 x, y, color
character*(*) label
.do end
.gfuncend
.desc begin
The &func &routine displays the text string
.arg label
on the chart described by the
.arg env
chart structure.
The string is displayed vertically starting at the point
.coord x y ,
relative to the upper left corner of the chart.
The
.arg color
specifies the palette color used to display the string.
.desc end
.return begin
The &func &routine returns zero
if successful; otherwise, a non-zero value is returned.
.return end
.see begin
.seelist &function. _pg_defaultchart _pg_initchart _pg_chart _pg_chartpie _pg_chartscatter _pg_hlabelchart
.see end
.grexam begin eg_pghl.&langsuff
.grexam end
.class &grfun
.system

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?