0

セルの書式設定についてもう一度

cell.EntireRow.WrapText = True
cell.EntireRow.AutoFit
cell.IndentLevel = 1   ' AutoFit is discarded  

または逆

cell.IndentLevel = 1
cell.EntireRow.WrapText = True
cell.EntireRow.AutoFit    ' IndentLevel is discarded

では、セルの IndentLevel と RowHeight AutoFit を一緒に保持することは可能ですか?

4

1 に答える 1

1

との両方を設定することをお勧めしRowHeightますColumnWidth

何らかの理由で、列の幅が必要以上に広い場合、列の自動調整が機能するようです。これを試してください

With cell
    .WrapText = True
    .IndentLevel = 1
    .ColumnWidth = 255
    .EntireRow.AutoFit
    .EntireColumn.AutoFit
End With
于 2012-09-22T21:09:23.397 に答える