CheckedListBox.ItemHeight 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取项区域的高度。
public:
virtual property int ItemHeight { int get(); void set(int value); };
[System.ComponentModel.Browsable(false)]
public override int ItemHeight { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.ItemHeight : int with get, set
Public Overrides Property ItemHeight As Integer
属性值
项区域的高度(以像素为单位)。
- 属性
注解
此度量基于字体高度加上小边距,以在项目周围提供空白。
将字体更改为 9.75 磅 Arial 时,“g”和“y”等字符的扩展符无法正确显示。 若要更正此问题,请从 CheckedListBox 派生类,并重写 ItemHeight 以返回 base.ItemHeight+2
。