主页C++ Builder 资料C++ Builder 参考手册其他数据类型TAnchors
C++ Builder 串口控件
C++ Builder 编程技巧
C++ Builder 操作指南
C++ Builder 参考手册
基础知识
cfloat 浮点数
cmath 数学函数
cstdlib 标准库函数
System 字符串
System 日期和时间
System.Math.hpp 数学函数
其他数据类型
 • TAlign
 • TAnchors
 • TCaption
 • TComponentState
 • TComponentStyle
 • TControlState
 • TControlStyle
 • TCursor
 • TDockOrientation
 • TDragKind
 • TDragMode
 • TDragState
 • TMouseActivate
 • TMouseButton
 • TScalingFlags
 • TShiftState
 • TStyleElements
VCL 基础类
VCL 应用程序
Pictures 图片
Graphics 绘图
Additional 控件
System 控件
A ~ Z 字母顺序排列的目录
网友留言/技术支持
TAnchors - 控件锚点集合

TAnchors: 控件锚点集合

请参考:TControlAnchors 属性。

请参考:使用 Anchors 属性让控件自动调整位置和大小

 

头文件:

#include <System.UITypes.hpp> (XE2 之后),#include <UITypes.hpp> (XE 之前)

 

命名空间:

System::Uitypes

 

TAnchors 成员

TAnchors 是集合类型,定义如下:

enum class TAnchorKind : unsigned char { akLeft, akTop, akRight, akBottom };

typedef System::Set<TAnchorKind, _DELPHI_SET_ENUMERATOR(TAnchorKind::akLeft), _DELPHI_SET_ENUMERATOR(TAnchorKind::akBottom)> TAnchors;

集合里面可以包含以下状态 (请参考使用 Anchors 属性让控件自动调整位置和大小):

锚点 说明
akLeft 左边锚点,控件的左边和容器的左边保持距离不变
akTop 上边锚点,控件的上边和容器的上边保持距离不变
akRight 右边锚点,控件的右边和容器的右边保持距离不变
akBottom 下边锚点,控件的下边和容器的下边保持距离不变
◤上一页:TAlign下一页:TCaption

C++ 爱好者 -- Victor Chen 的个人网站 www.cppfans.com 辽ICP备11016859号