xlang
v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
xlibrarys
Qt5
Qt5
QwtPlotCanvas.x
浏览该文件的文档.
1
//xlang Source, Name:QwtPlotCanvas.x
2
//Date: Wed Nov 04:45:46 2023
3
package
Qt{
4
@SuppressWarnings public class QwtPlotCanvas : QFrame{
5
public QwtPlotCanvas(){
6
7
}
8
9
public QwtPlotCanvas(long handle){
10
super(handle);
11
}
12
13
public
bool
create
()
override
{
14
nativehandle = QtXnl.createQObject(QType.qtQwtPlotCanvas,
this
, 0);
15
if
(nativehandle == 0){
16
return
false
;
17
}
18
return
true
;
19
}
20
21
public
void
setBorderRadius
(
double
b){
22
QtXnl.widget_set_double_value(nativehandle,Constant.QwtPlotCanvas_setBorderRadius, b);
23
}
24
25
public
bool
create
(@NotNilptr QWidget parent)
override
{
26
nativehandle = QtXnl.createQObject(QType.qtQwtPlotCanvas,
this
, parent.nativehandle);
27
if
(nativehandle == 0){
28
return
false
;
29
}
30
return
true
;
31
}
32
};
33
};
Qt.QwtPlotCanvas.setBorderRadius
void setBorderRadius(double b)
Definition
QwtPlotCanvas.x:21
Qt.QwtPlotCanvas.create
bool create() override
Definition
QwtPlotCanvas.x:13
Qt.QwtPlotCanvas.create
bool create(@NotNilptr QWidget parent) override
Definition
QwtPlotCanvas.x:25
制作者
1.9.8