79 Star 313 Fork 52

不在乎y/govcl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
paintbox.go 19.77 KB
一键复制 编辑 原始数据 按行查看 历史
不在乎y 提交于 2020-03-24 23:01 . Removing support for Delphi/VCL.
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753
//----------------------------------------
// The code is automatically generated by the GenlibLcl tool.
// Copyright © ying32. All Rights Reserved.
//
// Licensed under Apache License 2.0
//
//----------------------------------------
package vcl
import (
. "github.com/ying32/govcl/vcl/api"
. "github.com/ying32/govcl/vcl/types"
"unsafe"
)
type TPaintBox struct {
IControl
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与VCL没有太多关系。
ptr unsafe.Pointer
}
// CN: 创建一个新的对象。
// EN: Create a new object.
func NewPaintBox(owner IComponent) *TPaintBox {
p := new(TPaintBox)
p.instance = PaintBox_Create(CheckPtr(owner))
p.ptr = unsafe.Pointer(p.instance)
return p
}
// CN: 动态转换一个已存在的对象实例。或者使用Obj.As().<目标对象>。
// EN: Dynamically convert an existing object instance. Or use Obj.As().<Target object>.
func AsPaintBox(obj interface{}) *TPaintBox {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &TPaintBox{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// CN: 新建一个对象来自已经存在的对象实例指针。
// EN: Create a new object from an existing object instance pointer.
// Deprecated: use AsPaintBox.
func PaintBoxFromInst(inst uintptr) *TPaintBox {
return AsPaintBox(inst)
}
// CN: 新建一个对象来自已经存在的对象实例。
// EN: Create a new object from an existing object instance.
// Deprecated: use AsPaintBox.
func PaintBoxFromObj(obj IObject) *TPaintBox {
return AsPaintBox(obj)
}
// CN: 新建一个对象来自不安全的地址。注意:使用此函数可能造成一些不明情况,慎用。
// EN: Create a new object from an unsecure address. Note: Using this function may cause some unclear situations and be used with caution..
// Deprecated: use AsPaintBox.
func PaintBoxFromUnsafePointer(ptr unsafe.Pointer) *TPaintBox {
return AsPaintBox(ptr)
}
// -------------------------- Deprecated end --------------------------
// CN: 释放对象。
// EN: Free object.
func (p *TPaintBox) Free() {
if p.instance != 0 {
PaintBox_Free(p.instance)
p.instance, p.ptr = 0, nullptr
}
}
// CN: 返回对象实例指针。
// EN: Return object instance pointer.
func (p *TPaintBox) Instance() uintptr {
return p.instance
}
// CN: 获取一个不安全的地址。
// EN: Get an unsafe address.
func (p *TPaintBox) UnsafeAddr() unsafe.Pointer {
return p.ptr
}
// CN: 检测地址是否为空。
// EN: Check if the address is empty.
func (p *TPaintBox) IsValid() bool {
return p.instance != 0
}
// CN: 检测当前对象是否继承自目标对象。
// EN: Checks whether the current object is inherited from the target object.
func (p *TPaintBox) Is() TIs {
return TIs(p.instance)
}
// CN: 动态转换当前对象为目标对象。
// EN: Dynamically convert the current object to the target object.
//func (p *TPaintBox) As() TAs {
// return TAs(p.instance)
//}
// CN: 获取类信息指针。
// EN: Get class information pointer.
func TPaintBoxClass() TClass {
return PaintBox_StaticClassType()
}
// CN: 将控件置于最前。
// EN: Bring the control to the front.
func (p *TPaintBox) BringToFront() {
PaintBox_BringToFront(p.instance)
}
// CN: 将客户端坐标转为绝对的屏幕坐标。
// EN: Convert client coordinates to absolute screen coordinates.
func (p *TPaintBox) ClientToScreen(Point TPoint) TPoint {
return PaintBox_ClientToScreen(p.instance, Point)
}
// CN: 将客户端坐标转为父容器坐标。
// EN: Convert client coordinates to parent container coordinates.
func (p *TPaintBox) ClientToParent(Point TPoint, AParent IWinControl) TPoint {
return PaintBox_ClientToParent(p.instance, Point , CheckPtr(AParent))
}
// CN: 是否在拖拽中。
// EN: Is it in the middle of dragging.
func (p *TPaintBox) Dragging() bool {
return PaintBox_Dragging(p.instance)
}
// CN: 是否有父容器。
// EN: Is there a parent container.
func (p *TPaintBox) HasParent() bool {
return PaintBox_HasParent(p.instance)
}
// CN: 隐藏控件。
// EN: Hidden control.
func (p *TPaintBox) Hide() {
PaintBox_Hide(p.instance)
}
// CN: 要求重绘。
// EN: Redraw.
func (p *TPaintBox) Invalidate() {
PaintBox_Invalidate(p.instance)
}
// CN: 发送一个消息。
// EN: Send a message.
func (p *TPaintBox) Perform(Msg uint32, WParam uintptr, LParam int) int {
return PaintBox_Perform(p.instance, Msg , WParam , LParam)
}
// CN: 刷新控件。
// EN: Refresh control.
func (p *TPaintBox) Refresh() {
PaintBox_Refresh(p.instance)
}
// CN: 重绘。
// EN: Repaint.
func (p *TPaintBox) Repaint() {
PaintBox_Repaint(p.instance)
}
// CN: 将屏幕坐标转为客户端坐标。
// EN: Convert screen coordinates to client coordinates.
func (p *TPaintBox) ScreenToClient(Point TPoint) TPoint {
return PaintBox_ScreenToClient(p.instance, Point)
}
// CN: 将父容器坐标转为客户端坐标。
// EN: Convert parent container coordinates to client coordinates.
func (p *TPaintBox) ParentToClient(Point TPoint, AParent IWinControl) TPoint {
return PaintBox_ParentToClient(p.instance, Point , CheckPtr(AParent))
}
// CN: 控件至于最后面。
// EN: The control is placed at the end.
func (p *TPaintBox) SendToBack() {
PaintBox_SendToBack(p.instance)
}
// CN: 设置组件边界。
// EN: Set component boundaries.
func (p *TPaintBox) SetBounds(ALeft int32, ATop int32, AWidth int32, AHeight int32) {
PaintBox_SetBounds(p.instance, ALeft , ATop , AWidth , AHeight)
}
// CN: 显示控件。
// EN: Show control.
func (p *TPaintBox) Show() {
PaintBox_Show(p.instance)
}
// CN: 控件更新。
// EN: Update.
func (p *TPaintBox) Update() {
PaintBox_Update(p.instance)
}
// CN: 获取控件的字符,如果有。
// EN: Get the characters of the control, if any.
func (p *TPaintBox) GetTextBuf(Buffer *string, BufSize int32) int32 {
return PaintBox_GetTextBuf(p.instance, Buffer , BufSize)
}
// CN: 获取控件的字符长,如果有。
// EN: Get the character length of the control, if any.
func (p *TPaintBox) GetTextLen() int32 {
return PaintBox_GetTextLen(p.instance)
}
// CN: 设置控件字符,如果有。
// EN: Set control characters, if any.
func (p *TPaintBox) SetTextBuf(Buffer string) {
PaintBox_SetTextBuf(p.instance, Buffer)
}
// CN: 查找指定名称的组件。
// EN: Find the component with the specified name.
func (p *TPaintBox) FindComponent(AName string) *TComponent {
return AsComponent(PaintBox_FindComponent(p.instance, AName))
}
// CN: 获取类名路径。
// EN: Get the class name path.
func (p *TPaintBox) GetNamePath() string {
return PaintBox_GetNamePath(p.instance)
}
// CN: 复制一个对象,如果对象实现了此方法的话。
// EN: Copy an object, if the object implements this method.
func (p *TPaintBox) Assign(Source IObject) {
PaintBox_Assign(p.instance, CheckPtr(Source))
}
// CN: 获取类的类型信息。
// EN: Get class type information.
func (p *TPaintBox) ClassType() TClass {
return PaintBox_ClassType(p.instance)
}
// CN: 获取当前对象类名称。
// EN: Get the current object class name.
func (p *TPaintBox) ClassName() string {
return PaintBox_ClassName(p.instance)
}
// CN: 获取当前对象实例大小。
// EN: Get the current object instance size.
func (p *TPaintBox) InstanceSize() int32 {
return PaintBox_InstanceSize(p.instance)
}
// CN: 判断当前类是否继承自指定类。
// EN: Determine whether the current class inherits from the specified class.
func (p *TPaintBox) InheritsFrom(AClass TClass) bool {
return PaintBox_InheritsFrom(p.instance, AClass)
}
// CN: 与一个对象进行比较。
// EN: Compare with an object.
func (p *TPaintBox) Equals(Obj IObject) bool {
return PaintBox_Equals(p.instance, CheckPtr(Obj))
}
// CN: 获取类的哈希值。
// EN: Get the hash value of the class.
func (p *TPaintBox) GetHashCode() int32 {
return PaintBox_GetHashCode(p.instance)
}
// CN: 文本类信息。
// EN: Text information.
func (p *TPaintBox) ToString() string {
return PaintBox_ToString(p.instance)
}
// CN: 获取画布。
// EN: .
func (p *TPaintBox) Canvas() *TCanvas {
return AsCanvas(PaintBox_GetCanvas(p.instance))
}
// CN: 获取控件自动调整。
// EN: Get Control automatically adjusts.
func (p *TPaintBox) Align() TAlign {
return PaintBox_GetAlign(p.instance)
}
// CN: 设置控件自动调整。
// EN: Set Control automatically adjusts.
func (p *TPaintBox) SetAlign(value TAlign) {
PaintBox_SetAlign(p.instance, value)
}
// CN: 获取四个角位置的锚点。
// EN: .
func (p *TPaintBox) Anchors() TAnchors {
return PaintBox_GetAnchors(p.instance)
}
// CN: 设置四个角位置的锚点。
// EN: .
func (p *TPaintBox) SetAnchors(value TAnchors) {
PaintBox_SetAnchors(p.instance, value)
}
// CN: 获取颜色。
// EN: Get color.
func (p *TPaintBox) Color() TColor {
return PaintBox_GetColor(p.instance)
}
// CN: 设置颜色。
// EN: Set color.
func (p *TPaintBox) SetColor(value TColor) {
PaintBox_SetColor(p.instance, value)
}
func (p *TPaintBox) Constraints() *TSizeConstraints {
return AsSizeConstraints(PaintBox_GetConstraints(p.instance))
}
func (p *TPaintBox) SetConstraints(value *TSizeConstraints) {
PaintBox_SetConstraints(p.instance, CheckPtr(value))
}
// CN: 获取设置控件拖拽时的光标。
// EN: Get Set the cursor when the control is dragged.
func (p *TPaintBox) DragCursor() TCursor {
return PaintBox_GetDragCursor(p.instance)
}
// CN: 设置设置控件拖拽时的光标。
// EN: Set Set the cursor when the control is dragged.
func (p *TPaintBox) SetDragCursor(value TCursor) {
PaintBox_SetDragCursor(p.instance, value)
}
// CN: 获取拖拽模式。
// EN: Get Drag mode.
func (p *TPaintBox) DragMode() TDragMode {
return PaintBox_GetDragMode(p.instance)
}
// CN: 设置拖拽模式。
// EN: Set Drag mode.
func (p *TPaintBox) SetDragMode(value TDragMode) {
PaintBox_SetDragMode(p.instance, value)
}
// CN: 获取控件启用。
// EN: Get the control enabled.
func (p *TPaintBox) Enabled() bool {
return PaintBox_GetEnabled(p.instance)
}
// CN: 设置控件启用。
// EN: Set the control enabled.
func (p *TPaintBox) SetEnabled(value bool) {
PaintBox_SetEnabled(p.instance, value)
}
// CN: 获取字体。
// EN: Get Font.
func (p *TPaintBox) Font() *TFont {
return AsFont(PaintBox_GetFont(p.instance))
}
// CN: 设置字体。
// EN: Set Font.
func (p *TPaintBox) SetFont(value *TFont) {
PaintBox_SetFont(p.instance, CheckPtr(value))
}
// CN: 获取父容器颜色。
// EN: Get parent color.
func (p *TPaintBox) ParentColor() bool {
return PaintBox_GetParentColor(p.instance)
}
// CN: 设置父容器颜色。
// EN: Set parent color.
func (p *TPaintBox) SetParentColor(value bool) {
PaintBox_SetParentColor(p.instance, value)
}
// CN: 获取父容器字体。
// EN: Get Parent container font.
func (p *TPaintBox) ParentFont() bool {
return PaintBox_GetParentFont(p.instance)
}
// CN: 设置父容器字体。
// EN: Set Parent container font.
func (p *TPaintBox) SetParentFont(value bool) {
PaintBox_SetParentFont(p.instance, value)
}
func (p *TPaintBox) ParentShowHint() bool {
return PaintBox_GetParentShowHint(p.instance)
}
func (p *TPaintBox) SetParentShowHint(value bool) {
PaintBox_SetParentShowHint(p.instance, value)
}
// CN: 获取右键菜单。
// EN: Get Right click menu.
func (p *TPaintBox) PopupMenu() *TPopupMenu {
return AsPopupMenu(PaintBox_GetPopupMenu(p.instance))
}
// CN: 设置右键菜单。
// EN: Set Right click menu.
func (p *TPaintBox) SetPopupMenu(value IComponent) {
PaintBox_SetPopupMenu(p.instance, CheckPtr(value))
}
// CN: 获取显示鼠标悬停提示。
// EN: Get Show mouseover tips.
func (p *TPaintBox) ShowHint() bool {
return PaintBox_GetShowHint(p.instance)
}
// CN: 设置显示鼠标悬停提示。
// EN: Set Show mouseover tips.
func (p *TPaintBox) SetShowHint(value bool) {
PaintBox_SetShowHint(p.instance, value)
}
// CN: 获取控件可视。
// EN: Get the control visible.
func (p *TPaintBox) Visible() bool {
return PaintBox_GetVisible(p.instance)
}
// CN: 设置控件可视。
// EN: Set the control visible.
func (p *TPaintBox) SetVisible(value bool) {
PaintBox_SetVisible(p.instance, value)
}
// CN: 设置控件单击事件。
// EN: Set control click event.
func (p *TPaintBox) SetOnClick(fn TNotifyEvent) {
PaintBox_SetOnClick(p.instance, fn)
}
// CN: 设置双击事件。
// EN: .
func (p *TPaintBox) SetOnDblClick(fn TNotifyEvent) {
PaintBox_SetOnDblClick(p.instance, fn)
}
// CN: 设置拖拽下落事件。
// EN: Set Drag and drop event.
func (p *TPaintBox) SetOnDragDrop(fn TDragDropEvent) {
PaintBox_SetOnDragDrop(p.instance, fn)
}
// CN: 设置拖拽完成事件。
// EN: Set Drag and drop completion event.
func (p *TPaintBox) SetOnDragOver(fn TDragOverEvent) {
PaintBox_SetOnDragOver(p.instance, fn)
}
// CN: 设置拖拽结束。
// EN: Set End of drag.
func (p *TPaintBox) SetOnEndDrag(fn TEndDragEvent) {
PaintBox_SetOnEndDrag(p.instance, fn)
}
// CN: 设置鼠标按下事件。
// EN: Set Mouse down event.
func (p *TPaintBox) SetOnMouseDown(fn TMouseEvent) {
PaintBox_SetOnMouseDown(p.instance, fn)
}
// CN: 设置鼠标进入事件。
// EN: Set Mouse entry event.
func (p *TPaintBox) SetOnMouseEnter(fn TNotifyEvent) {
PaintBox_SetOnMouseEnter(p.instance, fn)
}
// CN: 设置鼠标离开事件。
// EN: Set Mouse leave event.
func (p *TPaintBox) SetOnMouseLeave(fn TNotifyEvent) {
PaintBox_SetOnMouseLeave(p.instance, fn)
}
// CN: 设置鼠标移动事件。
// EN: .
func (p *TPaintBox) SetOnMouseMove(fn TMouseMoveEvent) {
PaintBox_SetOnMouseMove(p.instance, fn)
}
// CN: 设置鼠标抬起事件。
// EN: Set Mouse lift event.
func (p *TPaintBox) SetOnMouseUp(fn TMouseEvent) {
PaintBox_SetOnMouseUp(p.instance, fn)
}
// CN: 设置绘画事件。
// EN: .
func (p *TPaintBox) SetOnPaint(fn TNotifyEvent) {
PaintBox_SetOnPaint(p.instance, fn)
}
func (p *TPaintBox) Action() *TAction {
return AsAction(PaintBox_GetAction(p.instance))
}
func (p *TPaintBox) SetAction(value IComponent) {
PaintBox_SetAction(p.instance, CheckPtr(value))
}
func (p *TPaintBox) BiDiMode() TBiDiMode {
return PaintBox_GetBiDiMode(p.instance)
}
func (p *TPaintBox) SetBiDiMode(value TBiDiMode) {
PaintBox_SetBiDiMode(p.instance, value)
}
func (p *TPaintBox) BoundsRect() TRect {
return PaintBox_GetBoundsRect(p.instance)
}
func (p *TPaintBox) SetBoundsRect(value TRect) {
PaintBox_SetBoundsRect(p.instance, value)
}
// CN: 获取客户区高度。
// EN: Get client height.
func (p *TPaintBox) ClientHeight() int32 {
return PaintBox_GetClientHeight(p.instance)
}
// CN: 设置客户区高度。
// EN: Set client height.
func (p *TPaintBox) SetClientHeight(value int32) {
PaintBox_SetClientHeight(p.instance, value)
}
func (p *TPaintBox) ClientOrigin() TPoint {
return PaintBox_GetClientOrigin(p.instance)
}
// CN: 获取客户区矩形。
// EN: Get client rectangle.
func (p *TPaintBox) ClientRect() TRect {
return PaintBox_GetClientRect(p.instance)
}
// CN: 获取客户区宽度。
// EN: Get client width.
func (p *TPaintBox) ClientWidth() int32 {
return PaintBox_GetClientWidth(p.instance)
}
// CN: 设置客户区宽度。
// EN: Set client width.
func (p *TPaintBox) SetClientWidth(value int32) {
PaintBox_SetClientWidth(p.instance, value)
}
// CN: 获取控件状态。
// EN: Get control state.
func (p *TPaintBox) ControlState() TControlState {
return PaintBox_GetControlState(p.instance)
}
// CN: 设置控件状态。
// EN: Set control state.
func (p *TPaintBox) SetControlState(value TControlState) {
PaintBox_SetControlState(p.instance, value)
}
// CN: 获取控件样式。
// EN: Get control style.
func (p *TPaintBox) ControlStyle() TControlStyle {
return PaintBox_GetControlStyle(p.instance)
}
// CN: 设置控件样式。
// EN: Set control style.
func (p *TPaintBox) SetControlStyle(value TControlStyle) {
PaintBox_SetControlStyle(p.instance, value)
}
func (p *TPaintBox) Floating() bool {
return PaintBox_GetFloating(p.instance)
}
// CN: 获取控件父容器。
// EN: Get control parent container.
func (p *TPaintBox) Parent() *TWinControl {
return AsWinControl(PaintBox_GetParent(p.instance))
}
// CN: 设置控件父容器。
// EN: Set control parent container.
func (p *TPaintBox) SetParent(value IWinControl) {
PaintBox_SetParent(p.instance, CheckPtr(value))
}
// CN: 获取左边位置。
// EN: Get Left position.
func (p *TPaintBox) Left() int32 {
return PaintBox_GetLeft(p.instance)
}
// CN: 设置左边位置。
// EN: Set Left position.
func (p *TPaintBox) SetLeft(value int32) {
PaintBox_SetLeft(p.instance, value)
}
// CN: 获取顶边位置。
// EN: Get Top position.
func (p *TPaintBox) Top() int32 {
return PaintBox_GetTop(p.instance)
}
// CN: 设置顶边位置。
// EN: Set Top position.
func (p *TPaintBox) SetTop(value int32) {
PaintBox_SetTop(p.instance, value)
}
// CN: 获取宽度。
// EN: Get width.
func (p *TPaintBox) Width() int32 {
return PaintBox_GetWidth(p.instance)
}
// CN: 设置宽度。
// EN: Set width.
func (p *TPaintBox) SetWidth(value int32) {
PaintBox_SetWidth(p.instance, value)
}
// CN: 获取高度。
// EN: Get height.
func (p *TPaintBox) Height() int32 {
return PaintBox_GetHeight(p.instance)
}
// CN: 设置高度。
// EN: Set height.
func (p *TPaintBox) SetHeight(value int32) {
PaintBox_SetHeight(p.instance, value)
}
// CN: 获取控件光标。
// EN: Get control cursor.
func (p *TPaintBox) Cursor() TCursor {
return PaintBox_GetCursor(p.instance)
}
// CN: 设置控件光标。
// EN: Set control cursor.
func (p *TPaintBox) SetCursor(value TCursor) {
PaintBox_SetCursor(p.instance, value)
}
// CN: 获取组件鼠标悬停提示。
// EN: Get component mouse hints.
func (p *TPaintBox) Hint() string {
return PaintBox_GetHint(p.instance)
}
// CN: 设置组件鼠标悬停提示。
// EN: Set component mouse hints.
func (p *TPaintBox) SetHint(value string) {
PaintBox_SetHint(p.instance, value)
}
// CN: 获取边矩,仅VCL有效。
// EN: Get Edge moment, only VCL is valid.
func (p *TPaintBox) Margins() *TMargins {
return AsMargins(PaintBox_GetMargins(p.instance))
}
// CN: 设置边矩,仅VCL有效。
// EN: Set Edge moment, only VCL is valid.
func (p *TPaintBox) SetMargins(value *TMargins) {
PaintBox_SetMargins(p.instance, CheckPtr(value))
}
// CN: 获取组件总数。
// EN: Get the total number of components.
func (p *TPaintBox) ComponentCount() int32 {
return PaintBox_GetComponentCount(p.instance)
}
// CN: 获取组件索引。
// EN: Get component index.
func (p *TPaintBox) ComponentIndex() int32 {
return PaintBox_GetComponentIndex(p.instance)
}
// CN: 设置组件索引。
// EN: Set component index.
func (p *TPaintBox) SetComponentIndex(value int32) {
PaintBox_SetComponentIndex(p.instance, value)
}
// CN: 获取组件所有者。
// EN: Get component owner.
func (p *TPaintBox) Owner() *TComponent {
return AsComponent(PaintBox_GetOwner(p.instance))
}
// CN: 获取组件名称。
// EN: Get the component name.
func (p *TPaintBox) Name() string {
return PaintBox_GetName(p.instance)
}
// CN: 设置组件名称。
// EN: Set the component name.
func (p *TPaintBox) SetName(value string) {
PaintBox_SetName(p.instance, value)
}
// CN: 获取对象标记。
// EN: Get the control tag.
func (p *TPaintBox) Tag() int {
return PaintBox_GetTag(p.instance)
}
// CN: 设置对象标记。
// EN: Set the control tag.
func (p *TPaintBox) SetTag(value int) {
PaintBox_SetTag(p.instance, value)
}
// CN: 获取指定索引组件。
// EN: Get the specified index component.
func (p *TPaintBox) Components(AIndex int32) *TComponent {
return AsComponent(PaintBox_GetComponents(p.instance, AIndex))
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ying32/govcl.git
git@gitee.com:ying32/govcl.git
ying32
govcl
govcl
v2.0.1

搜索帮助