AddRadioButton

ShapeCollection.AddRadioButton method

将 RadioButton 添加到工作表中。

public RadioButton AddRadioButton(int upperLeftRow, int top, int upperLeftColumn, int left, 
    int height, int width)
范围类型描述
upperLeftRowInt32左上行索引。
topInt32表示 RadioButton 与其左行的垂直偏移量,以像素为单位。
upperLeftColumnInt32左上列索引。
leftInt32表示 RadioButton 从其左列的水平偏移量,以像素为单位。
heightInt32表示 RadioButton 的高度,以像素为单位。
widthInt32表示 RadioButton 的宽度,以像素为单位。

返回值

一个 RadioButton 对象。

例子


[C#]
//添加一个单选按钮
RadioButton radioButton = shapes.AddRadioButton(1, 0, 1, 0, 100, 50);

也可以看看