数据窗口控件函数Deleterow的格式为:dwcontrol.Deleterow(row),参数 row指定删除行的位置,为0时代表()
举一反三
- 数据窗口控件函数insertrow的格式为:dwcontrol.insertrow(row),参数 row指定插入行的位置,为0时代表()
- 在VBA中,将某个单元格的背景填充为绿色,文字颜色改为蓝色,则正确的是 A: Cells(row, col).Interior.Color = RGB(0, 255, 0):Cells(row, col).Font.Color = RGB(0, 0, 255) B: Cells(row, col).Interior.Color = RGB(0, 0, 255):Cells(row, col).Font.Color = RGB(0, 255, 0) C: Cells(row, col).Interior.Color = RGB(255, 255, 255):Cells(row, col).Font.Color = RGB(0, 0, 255) D: Cells(row, col).Interior.Color = RGB(0, 0, 0):Cells(row, col).Font.Color = RGB(0, 0, 255)
- 在某页面中有一个10行3列的表格,表格id为PTable,下面的选项()能够删除最后一行。 A: document.getElementById(“PTable”).deleteRow(10); B: var delrow=document.getElementById(“PTable”).lastChild; delrow parentNode.removeChild(delrow); C: var index=document.getElementById(“PTable”).rows.length; document.getElementById(“PTable”).deleteRow(index); D: var index=document.getElementById(“PTable”).rows.length-1; document.getElementById(“PTable”).deleteRow(index);
- 美国和加拿大的车厘子的常见规格为() A: 9.5 Row B: 10 Row C: 10.5 Row D: 11 Row
- Int(average(row(A1)+row(D6)))的结果为3。