ビューの移動 |
|
|
---|---|---|
表示を拡大 |
|
|
表示を標準に戻す |
|
|
フォントのサイズ変更 |
|
|
セルの枠線非表示 |
|
|
改ページ挿入 |
|
|
ウインドウ位置を指定する |
|
|
ウインドウサイズを指定する |
|
|
ウインドウを最小化、最大化する |
|
|
ウインドウサイズを取得する |
|
|
ウインドウサイズを固定する |
|
|
Excelのウインドウサイズを設定する。 |
|
|
Excelのウインドウサイズを設定可能にする。 |
|
|
カーソル位置の検出 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | Range(LT, RB). Select Selection.Borders(xlDiagonalDown).LineStyle = xlNone Selection.Borders(xlDiagonalUp).LineStyle = xlNone With Selection.Borders(xlEdgeLeft) .LineStyle = xlContinuous .ColorIndex = xlAutomatic .TintAndShade = 0 .Weight = xlThin End With With Selection.Borders(xlEdgeTop) .LineStyle = xlContinuous .ColorIndex = xlAutomatic .TintAndShade = 0 .Weight = xlThin End With With Selection.Borders(xlEdgeBottom) .LineStyle = xlContinuous .ColorIndex = xlAutomatic .TintAndShade = 0 .Weight = xlThin End With With Selection.Borders(xlEdgeRight) .LineStyle = xlContinuous .ColorIndex = xlAutomatic .TintAndShade = 0 .Weight = xlThin End With With Selection.Borders(xlInsideVertical) .LineStyle = xlContinuous .ColorIndex = xlAutomatic .TintAndShade = 0 .Weight = xlThin End With With Selection.Borders(xlInsideHorizontal) .LineStyle = xlContinuous .ColorIndex = xlAutomatic .TintAndShade = 0 .Weight = xlThin End With |