NamedRange.BorderAround 方法
為 NamedRange 控制項加上框線,並設定新框線的 Color、LineStyle 和 Weight 屬性。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
Function BorderAround ( _
LineStyle As Object, _
Weight As XlBorderWeight, _
ColorIndex As XlColorIndex, _
Color As Object _
) As Object
Object BorderAround(
Object LineStyle,
XlBorderWeight Weight,
XlColorIndex ColorIndex,
Object Color
)
參數
- LineStyle
型別:System.Object
框線的線條樣式。可以是下列其中一個 XlLineStyle 值:
xlContinuous
xlDash
xlDashDot
xlDashDotDot
xlDot
xlDouble
xlSlantDashDot
xlLineStyleNone
- Weight
型別:Microsoft.Office.Interop.Excel.XlBorderWeight
框線粗細。可以是下列其中一個 XlBorderWeight 常數:
xlHairline
xlMedium
xlThick
xlThin
- ColorIndex
型別:Microsoft.Office.Interop.Excel.XlColorIndex
框線色彩,可做為目前色板的索引或 XlColorIndex 常數。可以是下列其中一個 XlColorIndex 常數:
xlColorIndexAutomatic
xlColorIndexNone
- Color
型別:System.Object
框線色彩,為 RGB 值。
傳回值
備註
您必須指定 ColorIndex 或 Color,但不能同時指定兩者。
您可以指定 LineStyle 或 Weight,但不能同時指定兩者。 如果您未指定上述引數,則 Microsoft Office Excel 會使用預設的線條樣式和粗細。
這個方法會顯示整個範圍的外框,但不填滿。 若要設定所有儲存格的框線,您必須設定 Borders 集合的 Color、LineStyle 與 Weight 屬性。 若要清除框線,您必須將範圍中所有儲存格的 LineStyle 屬性設定為 xlLineStyleNone。
選擇性參數
如需選擇性參數的詳細資訊,請參閱Office 方案中的選擇性參數。
範例
下列程式碼範例會示範如何設定名稱為 NamedRange1 之 NamedRange 控制項的各種格式化和顯示特性。 請特別注意,這個範例會使用 BorderAround 方法,在 NamedRange1 周圍繪製粗框線。
這是示範文件層級自訂的範例。
Private Sub SetRangeFormats()
Dim namedRange1 As Microsoft.Office.Tools.Excel.NamedRange _
= Me.Controls.AddNamedRange(Me.Range("A1", "A5"), _
"namedRange1")
namedRange1.NoteText("This is a Formatting test", , )
namedRange1.Value2 = "Martha"
namedRange1.Font.Name = "Verdana"
namedRange1.VerticalAlignment = Excel.XlVAlign.xlVAlignCenter
namedRange1.HorizontalAlignment = Excel.XlHAlign.xlHAlignCenter
namedRange1.BorderAround(, Excel.XlBorderWeight.xlThick, _
Excel.XlColorIndex.xlColorIndexAutomatic, )
namedRange1.AutoFormat( _
Excel.XlRangeAutoFormat.xlRangeAutoFormat3DEffects1, _
True, False, True, False, True, True)
If MessageBox.Show("Clear the formatting and notes?", _
"Test", MessageBoxButtons.YesNo) = DialogResult.Yes Then
namedRange1.ClearFormats()
namedRange1.ClearNotes()
End If
End Sub
private void SetRangeFormats()
{
Microsoft.Office.Tools.Excel.NamedRange namedRange1 =
this.Controls.AddNamedRange(this.Range["A1", "A5"],
"namedRange1");
namedRange1.NoteText("This is a Formatting test", missing, missing);
namedRange1.Value2 = "Martha";
namedRange1.Font.Name = "Verdana";
namedRange1.VerticalAlignment = Excel.XlVAlign.xlVAlignCenter;
namedRange1.HorizontalAlignment = Excel.XlHAlign.xlHAlignCenter;
namedRange1.BorderAround(missing, Excel.XlBorderWeight.xlThick,
Excel.XlColorIndex.xlColorIndexAutomatic, missing);
namedRange1.AutoFormat(Excel.XlRangeAutoFormat.xlRangeAutoFormat3DEffects1,
true, false, true, false, true, true);
if (MessageBox.Show("Clear the formatting and notes?", "Test",
MessageBoxButtons.YesNo) == DialogResult.Yes)
{
namedRange1.ClearFormats();
namedRange1.ClearNotes();
}
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。