xlang v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
QCategoryAxis.x
浏览该文件的文档.
1//xlang Source, Name:qt5/widgets/QCategoryAxis.x
2//Date: Sun Nov 12:59:54 2022
3package Qt{
4 @SuppressWarnings public class QCategoryAxis : QValueAxis{
5 public QCategoryAxis(){
6 nativehandle = QtXnl.createQObject(QType.qtCategoryAxis, this, 0);
7 if (nativehandle == 0){
8 throw new Exception("can not create QValueAxis");
9 }
10 }
11
12 public QCategoryAxis(long handle){
13 super(handle);
14 }
15
16 public void append(String label, double value){
17 QtXnl.widget_set_str_double_value(nativehandle, Constant.QCATEGORYASIX_APPEND, label, value);
18 }
19 };
20};
异常类
QCategoryAxis(long handle)
void append(String label, double value)
字符串类