XmlMappedRange.SpecialCells 方法
取得 Range,表示所有符合指定類型和資料的儲存格。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
Function SpecialCells ( _
Type As XlCellType, _
Value As Object _
) As Range
Range SpecialCells(
XlCellType Type,
Object Value
)
參數
- Type
型別:Microsoft.Office.Interop.Excel.XlCellType
要包括的儲存格。
可以是下列其中一個 XlCellType 值:
xlCellTypeAllFormatConditions .任何格式的儲存格。
xlCellTypeAllValidation .包含驗證準則的儲存格。
xlCellTypeBlanks .空白儲存格。
xlCellTypeComments .包含備註的儲存格。
xlCellTypeConstants .包含常數的儲存格。
xlCellTypeFormulas .包含公式的儲存格。
xlCellTypeLastCell .使用範圍內的最後一個儲存格。
xlCellTypeSameFormatConditions .包含相同格式的儲存格。
xlCellTypeSameValidation .包含相同驗證準則的儲存格。
xlCellTypeVisible .所有可見的儲存格。
- Value
型別:System.Object
如果 Type 是 xlCellTypeConstants 或 xlCellTypeFormulas,則這個引數用來判斷結果會包括哪一類型儲存格。這些值會一起加入,以傳回多個類型。預設是選取所有常數或公式,無論類型為何。可以是下列其中一個 XlSpecialCellsValue 值:
xlErrors
xlLogical
xlNumbers
xlTextValues
傳回值
型別:Microsoft.Office.Interop.Excel.Range
Range ,表示所有符合指定類型和資料的儲存格。
備註
選擇性參數
如需選擇性參數的詳細資訊,請參閱Office 方案中的選擇性參數。
範例
下列程式碼範例使用 SpecialCells 方法,取得並選取 XmlMappedRange 中包含註解的儲存格範圍。這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange。
Private Sub SelectRangeWithComments()
Me.CustomerLastNameCell.AddComment(("This cell contains " & _
"a last name."))
Dim range1 As Excel.Range = Me.CustomerLastNameCell.SpecialCells( _
Excel.XlCellType.xlCellTypeComments)
range1.Select()
End Sub
private void SelectRangeWithComments()
{
this.CustomerLastNameCell.AddComment("This cell contains " +
"a last name.");
Excel.Range range1 = this.CustomerLastNameCell.SpecialCells(
Excel.XlCellType.xlCellTypeComments);
range1.Select();
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。