Add

TextBoxCollection.Add method

向集合中添加一个文本框。

public int Add(int upperLeftRow, int upperLeftColumn, int height, int width)
范围类型描述
upperLeftRowInt32左上行索引。
upperLeftColumnInt32左上列索引。
heightInt32文本框的高度,以像素为单位。
widthInt32文本框的宽度,以像素为单位。

返回值

TextBox对象索引。

例子


[C#]
//添加一个文本框
int index2 = textBoxCollection.Add(1, 1, 50, 100);

也可以看看