78 Star 308 Fork 54

不在乎y / govcl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
comboexitem.go 6.05 KB
一键复制 编辑 原始数据 按行查看 历史
不在乎y 提交于 2020-07-04 21:45 . Use comments that conform to godoc.
//----------------------------------------
// 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 TComboExItem struct {
IObject
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与LCL没有太多关系。
ptr unsafe.Pointer
}
// 动态转换一个已存在的对象实例。
//
// Dynamically convert an existing object instance.
func AsComboExItem(obj interface{}) *TComboExItem {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &TComboExItem{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// 新建一个对象来自已经存在的对象实例指针。
//
// Create a new object from an existing object instance pointer.
// Deprecated: use AsComboExItem.
func ComboExItemFromInst(inst uintptr) *TComboExItem {
return AsComboExItem(inst)
}
// 新建一个对象来自已经存在的对象实例。
//
// Create a new object from an existing object instance.
// Deprecated: use AsComboExItem.
func ComboExItemFromObj(obj IObject) *TComboExItem {
return AsComboExItem(obj)
}
// 新建一个对象来自不安全的地址。注意:使用此函数可能造成一些不明情况,慎用。
//
// Create a new object from an unsecured address. Note: Using this function may cause some unclear situations and be used with caution..
// Deprecated: use AsComboExItem.
func ComboExItemFromUnsafePointer(ptr unsafe.Pointer) *TComboExItem {
return AsComboExItem(ptr)
}
// -------------------------- Deprecated end --------------------------
// 返回对象实例指针。
//
// Return object instance pointer.
func (c *TComboExItem) Instance() uintptr {
return c.instance
}
// 获取一个不安全的地址。
//
// Get an unsafe address.
func (c *TComboExItem) UnsafeAddr() unsafe.Pointer {
return c.ptr
}
// 检测地址是否为空。
//
// Check if the address is empty.
func (c *TComboExItem) IsValid() bool {
return c.instance != 0
}
// 检测当前对象是否继承自目标对象。
//
// Checks whether the current object is inherited from the target object.
func (c *TComboExItem) Is() TIs {
return TIs(c.instance)
}
// 动态转换当前对象为目标对象。
//
// Dynamically convert the current object to the target object.
//func (c *TComboExItem) As() TAs {
// return TAs(c.instance)
//}
// 获取类信息指针。
//
// Get class information pointer.
func TComboExItemClass() TClass {
return ComboExItem_StaticClassType()
}
// 复制一个对象,如果对象实现了此方法的话。
//
// Copy an object, if the object implements this method.
func (c *TComboExItem) Assign(Source IObject) {
ComboExItem_Assign(c.instance, CheckPtr(Source))
}
// 获取类名路径。
//
// Get the class name path.
func (c *TComboExItem) GetNamePath() string {
return ComboExItem_GetNamePath(c.instance)
}
// 获取类的类型信息。
//
// Get class type information.
func (c *TComboExItem) ClassType() TClass {
return ComboExItem_ClassType(c.instance)
}
// 获取当前对象类名称。
//
// Get the current object class name.
func (c *TComboExItem) ClassName() string {
return ComboExItem_ClassName(c.instance)
}
// 获取当前对象实例大小。
//
// Get the current object instance size.
func (c *TComboExItem) InstanceSize() int32 {
return ComboExItem_InstanceSize(c.instance)
}
// 判断当前类是否继承自指定类。
//
// Determine whether the current class inherits from the specified class.
func (c *TComboExItem) InheritsFrom(AClass TClass) bool {
return ComboExItem_InheritsFrom(c.instance, AClass)
}
// 与一个对象进行比较。
//
// Compare with an object.
func (c *TComboExItem) Equals(Obj IObject) bool {
return ComboExItem_Equals(c.instance, CheckPtr(Obj))
}
// 获取类的哈希值。
//
// Get the hash value of the class.
func (c *TComboExItem) GetHashCode() int32 {
return ComboExItem_GetHashCode(c.instance)
}
// 文本类信息。
//
// Text information.
func (c *TComboExItem) ToString() string {
return ComboExItem_ToString(c.instance)
}
func (c *TComboExItem) Indent() int32 {
return ComboExItem_GetIndent(c.instance)
}
func (c *TComboExItem) SetIndent(value int32) {
ComboExItem_SetIndent(c.instance, value)
}
func (c *TComboExItem) OverlayImageIndex() int32 {
return ComboExItem_GetOverlayImageIndex(c.instance)
}
func (c *TComboExItem) SetOverlayImageIndex(value int32) {
ComboExItem_SetOverlayImageIndex(c.instance, value)
}
func (c *TComboExItem) Data() unsafe.Pointer {
return ComboExItem_GetData(c.instance)
}
func (c *TComboExItem) SetData(value unsafe.Pointer) {
ComboExItem_SetData(c.instance, value)
}
// 获取控件标题。
//
// Get the control title.
func (c *TComboExItem) Caption() string {
return ComboExItem_GetCaption(c.instance)
}
// 设置控件标题。
//
// Set the control title.
func (c *TComboExItem) SetCaption(value string) {
ComboExItem_SetCaption(c.instance, value)
}
// 获取图像在images中的索引。
func (c *TComboExItem) ImageIndex() int32 {
return ComboExItem_GetImageIndex(c.instance)
}
// 设置图像在images中的索引。
func (c *TComboExItem) SetImageIndex(value int32) {
ComboExItem_SetImageIndex(c.instance, value)
}
func (c *TComboExItem) Collection() *TCollection {
return AsCollection(ComboExItem_GetCollection(c.instance))
}
func (c *TComboExItem) SetCollection(value *TCollection) {
ComboExItem_SetCollection(c.instance, CheckPtr(value))
}
func (c *TComboExItem) Index() int32 {
return ComboExItem_GetIndex(c.instance)
}
func (c *TComboExItem) SetIndex(value int32) {
ComboExItem_SetIndex(c.instance, value)
}
func (c *TComboExItem) DisplayName() string {
return ComboExItem_GetDisplayName(c.instance)
}
func (c *TComboExItem) SetDisplayName(value string) {
ComboExItem_SetDisplayName(c.instance, value)
}
Go
1
https://gitee.com/ying32/govcl.git
git@gitee.com:ying32/govcl.git
ying32
govcl
govcl
v2.2.0

搜索帮助

53164aa7 5694891 3bd8fe86 5694891