◆ QValueAxis() [1/2]
在文件 QValueAxis.x 第 9 行定义.
9 {
10 nativehandle = QtXnl.createQObject(QType.qtValueAxis,
this, 0);
11 if (nativehandle == 0){
12 throw new Exception(
"can not create QValueAxis");
13 }
14 }
◆ QValueAxis() [2/2]
QValueAxis |
( |
long |
handle | ) |
|
◆ labelFormat()
在文件 QValueAxis.x 第 28 行定义.
28 {
29 return (
String)QtXnl.core_getString(nativehandle, Constant.QVALUEAXIS_LABELFORMAT);
30 }
◆ minorTickCount()
在文件 QValueAxis.x 第 45 行定义.
45 {
46 return QtXnl.widget_get_int_value(nativehandle, Constant.QVALUEAXIS_MINORTICKCOUNT);
47 }
◆ setLabelFormat()
void setLabelFormat |
( |
String |
format | ) |
|
在文件 QValueAxis.x 第 24 行定义.
24 {
25 QtXnl.widget_slot_string(nativehandle, Constant.QVALUEAXIS_SETLABELFORMAT, format);
26 }
◆ setMinorTickCount()
void setMinorTickCount |
( |
int |
count | ) |
|
在文件 QValueAxis.x 第 41 行定义.
41 {
42 QtXnl.widget_set_vint_value(nativehandle, Constant.QVALUEAXIS_SETMINORTICKCOUNT, count);
43 }
◆ setRange()
void setRange |
( |
double |
min, |
|
|
double |
max |
|
) |
| |
在文件 QValueAxis.x 第 20 行定义.
20 {
21 QtXnl.native_double2(nativehandle, Constant.QVALUEAXIS_SETRANGE, min, max);
22 }
◆ setTickCount()
void setTickCount |
( |
int |
count | ) |
|
在文件 QValueAxis.x 第 33 行定义.
33 {
34 QtXnl.widget_set_vint_value(nativehandle, Constant.QVALUEAXIS_SETTICKCOUNT, count);
35 }
◆ setTickType()
void setTickType |
( |
TickType |
type | ) |
|
在文件 QValueAxis.x 第 49 行定义.
49 {
50 QtXnl.widget_set_vint_value(nativehandle, Constant.QXYSERIES_SETTICKTYPE, type);
51 }
◆ tickCount()
在文件 QValueAxis.x 第 37 行定义.
37 {
38 return QtXnl.widget_get_int_value(nativehandle, Constant.QVALUEAXIS_TICKCOUNT);
39 }
◆ tickType()
在文件 QValueAxis.x 第 53 行定义.
53 {
54 return (TickType)QtXnl.widget_get_int_value(nativehandle, Constant.QXYSERIES_TICKTYPE);
55 }