XmlMappedRange.EntireColumn 屬性
取得 Range,表示包含整欄的 XmlMappedRange 控制項。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
ReadOnly Property EntireColumn As Range
Range EntireColumn { get; }
屬性值
型別:Microsoft.Office.Interop.Excel.Range
Range ,表示包含整欄的 XmlMappedRange 控制項。
範例
下列程式碼範例使用 EntireColumn 和 EntireRow 屬性將包含 XmlMappedRange 的欄和列框線色彩設定為綠色。這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange。
Private Sub HighlightColumnAndRow()
' Set the color of the column and row borders to the
' RGB value for green.
Me.CustomerLastNameCell.EntireColumn.Borders.Color = &HFF00
Me.CustomerLastNameCell.EntireRow.Borders.Color = &HFF00
End Sub
private void HighlightColumnAndRow()
{
// Set the color of the column and row borders to the RGB value for green.
this.CustomerLastNameCell.EntireColumn.Borders.Color = 0xFF00;
this.CustomerLastNameCell.EntireRow.Borders.Color = 0xFF00;
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。