• 2022-06-03
    在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)