xlang v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
QAbstractSeries.x
浏览该文件的文档.
1//xlang Source, Name:qt5/widgets/QAbstractSeries.x
2//Date: Fri Sep 01:43:35 2022
3package Qt{
4 @SuppressWarnings public class QAbstractSeries : QObject{
5 public QAbstractSeries(){
6
7 }
8
9 public QAbstractSeries(long handle){
10 super(handle);
11 }
12
13 public double opacity() {
14 return QtXnl.widget_get_double_value(nativehandle,Constant.QABSTRACTSERIES_OPACITY);
15 }
16
17 public void setOpacity(double fopacity){
18 QtXnl.widget_set_double_value(nativehandle, Constant.QABSTRACTSERIES_SETOPACITY, fopacity);
19 }
20
21 public QChart chart(){
22 return (QChart)QtXnl.widget_get_object(nativehandle, Constant.QABSTRACTSERIES_CHART);
23 }
24
25 public void setName(String title){
26 QtXnl.widget_slot_string(nativehandle, Constant.QABSTRACTSERIES_SETNAME, title);
27 }
28
29 public String name(){
30 return (String)QtXnl.core_getString(nativehandle, Constant.QABSTRACTSERIES_NAME);
31 }
32 };
33};
void setOpacity(double fopacity)
void setName(String title)
字符串类