代码拉取完成,页面将自动刷新
finalizerOn
is not turned on by default. After turning …
//----------------------------------------
// 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 TFontDialog struct {
IComponent
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与LCL没有太多关系。
ptr unsafe.Pointer
}
// 创建一个新的对象。
//
// Create a new object.
func NewFontDialog(owner IComponent) *TFontDialog {
f := new(TFontDialog)
f.instance = FontDialog_Create(CheckPtr(owner))
f.ptr = unsafe.Pointer(f.instance)
return f
}
// 动态转换一个已存在的对象实例。
//
// Dynamically convert an existing object instance.
func AsFontDialog(obj interface{}) *TFontDialog {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &TFontDialog{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// 新建一个对象来自已经存在的对象实例指针。
//
// Create a new object from an existing object instance pointer.
// Deprecated: use AsFontDialog.
func FontDialogFromInst(inst uintptr) *TFontDialog {
return AsFontDialog(inst)
}
// 新建一个对象来自已经存在的对象实例。
//
// Create a new object from an existing object instance.
// Deprecated: use AsFontDialog.
func FontDialogFromObj(obj IObject) *TFontDialog {
return AsFontDialog(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 AsFontDialog.
func FontDialogFromUnsafePointer(ptr unsafe.Pointer) *TFontDialog {
return AsFontDialog(ptr)
}
// -------------------------- Deprecated end --------------------------
// 释放对象。
//
// Free object.
func (f *TFontDialog) Free() {
if f.instance != 0 {
FontDialog_Free(f.instance)
f.instance, f.ptr = 0, nullptr
}
}
// 返回对象实例指针。
//
// Return object instance pointer.
func (f *TFontDialog) Instance() uintptr {
return f.instance
}
// 获取一个不安全的地址。
//
// Get an unsafe address.
func (f *TFontDialog) UnsafeAddr() unsafe.Pointer {
return f.ptr
}
// 检测地址是否为空。
//
// Check if the address is empty.
func (f *TFontDialog) IsValid() bool {
return f.instance != 0
}
// 检测当前对象是否继承自目标对象。
//
// Checks whether the current object is inherited from the target object.
func (f *TFontDialog) Is() TIs {
return TIs(f.instance)
}
// 动态转换当前对象为目标对象。
//
// Dynamically convert the current object to the target object.
//func (f *TFontDialog) As() TAs {
// return TAs(f.instance)
//}
// 获取类信息指针。
//
// Get class information pointer.
func TFontDialogClass() TClass {
return FontDialog_StaticClassType()
}
// 执行。
func (f *TFontDialog) Execute() bool {
return FontDialog_Execute(f.instance)
}
// 查找指定名称的组件。
//
// Find the component with the specified name.
func (f *TFontDialog) FindComponent(AName string) *TComponent {
return AsComponent(FontDialog_FindComponent(f.instance, AName))
}
// 获取类名路径。
//
// Get the class name path.
func (f *TFontDialog) GetNamePath() string {
return FontDialog_GetNamePath(f.instance)
}
// 是否有父容器。
//
// Is there a parent container.
func (f *TFontDialog) HasParent() bool {
return FontDialog_HasParent(f.instance)
}
// 复制一个对象,如果对象实现了此方法的话。
//
// Copy an object, if the object implements this method.
func (f *TFontDialog) Assign(Source IObject) {
FontDialog_Assign(f.instance, CheckPtr(Source))
}
// 获取类的类型信息。
//
// Get class type information.
func (f *TFontDialog) ClassType() TClass {
return FontDialog_ClassType(f.instance)
}
// 获取当前对象类名称。
//
// Get the current object class name.
func (f *TFontDialog) ClassName() string {
return FontDialog_ClassName(f.instance)
}
// 获取当前对象实例大小。
//
// Get the current object instance size.
func (f *TFontDialog) InstanceSize() int32 {
return FontDialog_InstanceSize(f.instance)
}
// 判断当前类是否继承自指定类。
//
// Determine whether the current class inherits from the specified class.
func (f *TFontDialog) InheritsFrom(AClass TClass) bool {
return FontDialog_InheritsFrom(f.instance, AClass)
}
// 与一个对象进行比较。
//
// Compare with an object.
func (f *TFontDialog) Equals(Obj IObject) bool {
return FontDialog_Equals(f.instance, CheckPtr(Obj))
}
// 获取类的哈希值。
//
// Get the hash value of the class.
func (f *TFontDialog) GetHashCode() int32 {
return FontDialog_GetHashCode(f.instance)
}
// 文本类信息。
//
// Text information.
func (f *TFontDialog) ToString() string {
return FontDialog_ToString(f.instance)
}
// 获取字体。
//
// Get Font.
func (f *TFontDialog) Font() *TFont {
return AsFont(FontDialog_GetFont(f.instance))
}
// 设置字体。
//
// Set Font.
func (f *TFontDialog) SetFont(value *TFont) {
FontDialog_SetFont(f.instance, CheckPtr(value))
}
func (f *TFontDialog) Options() TFontDialogOptions {
return FontDialog_GetOptions(f.instance)
}
func (f *TFontDialog) SetOptions(value TFontDialogOptions) {
FontDialog_SetOptions(f.instance, value)
}
// 获取控件句柄。
//
// Get Control handle.
func (f *TFontDialog) Handle() HWND {
return FontDialog_GetHandle(f.instance)
}
func (f *TFontDialog) SetOnClose(fn TNotifyEvent) {
FontDialog_SetOnClose(f.instance, fn)
}
// 设置显示事件。
func (f *TFontDialog) SetOnShow(fn TNotifyEvent) {
FontDialog_SetOnShow(f.instance, fn)
}
// 获取组件总数。
//
// Get the total number of components.
func (f *TFontDialog) ComponentCount() int32 {
return FontDialog_GetComponentCount(f.instance)
}
// 获取组件索引。
//
// Get component index.
func (f *TFontDialog) ComponentIndex() int32 {
return FontDialog_GetComponentIndex(f.instance)
}
// 设置组件索引。
//
// Set component index.
func (f *TFontDialog) SetComponentIndex(value int32) {
FontDialog_SetComponentIndex(f.instance, value)
}
// 获取组件所有者。
//
// Get component owner.
func (f *TFontDialog) Owner() *TComponent {
return AsComponent(FontDialog_GetOwner(f.instance))
}
// 获取组件名称。
//
// Get the component name.
func (f *TFontDialog) Name() string {
return FontDialog_GetName(f.instance)
}
// 设置组件名称。
//
// Set the component name.
func (f *TFontDialog) SetName(value string) {
FontDialog_SetName(f.instance, value)
}
// 获取对象标记。
//
// Get the control tag.
func (f *TFontDialog) Tag() int {
return FontDialog_GetTag(f.instance)
}
// 设置对象标记。
//
// Set the control tag.
func (f *TFontDialog) SetTag(value int) {
FontDialog_SetTag(f.instance, value)
}
// 获取指定索引组件。
//
// Get the specified index component.
func (f *TFontDialog) Components(AIndex int32) *TComponent {
return AsComponent(FontDialog_GetComponents(f.instance, AIndex))
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。