代码拉取完成,页面将自动刷新
//----------------------------------------
// 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 TTextAttributes struct {
IObject
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与LCL没有太多关系。
ptr unsafe.Pointer
}
// CN: 动态转换一个已存在的对象实例。或者使用Obj.As().<目标对象>。
// EN: Dynamically convert an existing object instance. Or use Obj.As().<Target object>.
func AsTextAttributes(obj interface{}) *TTextAttributes {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &TTextAttributes{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// CN: 新建一个对象来自已经存在的对象实例指针。
// EN: Create a new object from an existing object instance pointer.
// Deprecated: use AsTextAttributes.
func TextAttributesFromInst(inst uintptr) *TTextAttributes {
return AsTextAttributes(inst)
}
// CN: 新建一个对象来自已经存在的对象实例。
// EN: Create a new object from an existing object instance.
// Deprecated: use AsTextAttributes.
func TextAttributesFromObj(obj IObject) *TTextAttributes {
return AsTextAttributes(obj)
}
// CN: 新建一个对象来自不安全的地址。注意:使用此函数可能造成一些不明情况,慎用。
// EN: Create a new object from an unsecured address. Note: Using this function may cause some unclear situations and be used with caution..
// Deprecated: use AsTextAttributes.
func TextAttributesFromUnsafePointer(ptr unsafe.Pointer) *TTextAttributes {
return AsTextAttributes(ptr)
}
// -------------------------- Deprecated end --------------------------
// CN: 返回对象实例指针。
// EN: Return object instance pointer.
func (t *TTextAttributes) Instance() uintptr {
return t.instance
}
// CN: 获取一个不安全的地址。
// EN: Get an unsafe address.
func (t *TTextAttributes) UnsafeAddr() unsafe.Pointer {
return t.ptr
}
// CN: 检测地址是否为空。
// EN: Check if the address is empty.
func (t *TTextAttributes) IsValid() bool {
return t.instance != 0
}
// CN: 检测当前对象是否继承自目标对象。
// EN: Checks whether the current object is inherited from the target object.
func (t *TTextAttributes) Is() TIs {
return TIs(t.instance)
}
// CN: 动态转换当前对象为目标对象。
// EN: Dynamically convert the current object to the target object.
//func (t *TTextAttributes) As() TAs {
// return TAs(t.instance)
//}
// CN: 获取类信息指针。
// EN: Get class information pointer.
func TTextAttributesClass() TClass {
return TextAttributes_StaticClassType()
}
// CN: 复制一个对象,如果对象实现了此方法的话。
// EN: Copy an object, if the object implements this method.
func (t *TTextAttributes) Assign(Source IObject) {
TextAttributes_Assign(t.instance, CheckPtr(Source))
}
// CN: 获取类名路径。
// EN: Get the class name path.
func (t *TTextAttributes) GetNamePath() string {
return TextAttributes_GetNamePath(t.instance)
}
// CN: 获取类的类型信息。
// EN: Get class type information.
func (t *TTextAttributes) ClassType() TClass {
return TextAttributes_ClassType(t.instance)
}
// CN: 获取当前对象类名称。
// EN: Get the current object class name.
func (t *TTextAttributes) ClassName() string {
return TextAttributes_ClassName(t.instance)
}
// CN: 获取当前对象实例大小。
// EN: Get the current object instance size.
func (t *TTextAttributes) InstanceSize() int32 {
return TextAttributes_InstanceSize(t.instance)
}
// CN: 判断当前类是否继承自指定类。
// EN: Determine whether the current class inherits from the specified class.
func (t *TTextAttributes) InheritsFrom(AClass TClass) bool {
return TextAttributes_InheritsFrom(t.instance, AClass)
}
// CN: 与一个对象进行比较。
// EN: Compare with an object.
func (t *TTextAttributes) Equals(Obj IObject) bool {
return TextAttributes_Equals(t.instance, CheckPtr(Obj))
}
// CN: 获取类的哈希值。
// EN: Get the hash value of the class.
func (t *TTextAttributes) GetHashCode() int32 {
return TextAttributes_GetHashCode(t.instance)
}
// CN: 文本类信息。
// EN: Text information.
func (t *TTextAttributes) ToString() string {
return TextAttributes_ToString(t.instance)
}
func (t *TTextAttributes) Charset() TFontCharset {
return TextAttributes_GetCharset(t.instance)
}
func (t *TTextAttributes) SetCharset(value TFontCharset) {
TextAttributes_SetCharset(t.instance, value)
}
// CN: 获取颜色。
// EN: Get color.
func (t *TTextAttributes) Color() TColor {
return TextAttributes_GetColor(t.instance)
}
// CN: 设置颜色。
// EN: Set color.
func (t *TTextAttributes) SetColor(value TColor) {
TextAttributes_SetColor(t.instance, value)
}
// CN: 获取组件名称。
// EN: Get the component name.
func (t *TTextAttributes) Name() string {
return TextAttributes_GetName(t.instance)
}
// CN: 设置组件名称。
// EN: Set the component name.
func (t *TTextAttributes) SetName(value string) {
TextAttributes_SetName(t.instance, value)
}
func (t *TTextAttributes) Pitch() TFontPitch {
return TextAttributes_GetPitch(t.instance)
}
func (t *TTextAttributes) SetPitch(value TFontPitch) {
TextAttributes_SetPitch(t.instance, value)
}
func (t *TTextAttributes) Size() int32 {
return TextAttributes_GetSize(t.instance)
}
func (t *TTextAttributes) SetSize(value int32) {
TextAttributes_SetSize(t.instance, value)
}
func (t *TTextAttributes) Style() TFontStyles {
return TextAttributes_GetStyle(t.instance)
}
func (t *TTextAttributes) SetStyle(value TFontStyles) {
TextAttributes_SetStyle(t.instance, value)
}
// CN: 获取高度。
// EN: Get height.
func (t *TTextAttributes) Height() int32 {
return TextAttributes_GetHeight(t.instance)
}
// CN: 设置高度。
// EN: Set height.
func (t *TTextAttributes) SetHeight(value int32) {
TextAttributes_SetHeight(t.instance, value)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。