Range.SpecialCells(XlCellType, Object) 方法

定义

返回一个 Range 对象,该对象表示与指定类型和值匹配的所有单元格。

public Microsoft.Office.Interop.Excel.Range SpecialCells (Microsoft.Office.Interop.Excel.XlCellType Type, object Value);
Public Function SpecialCells (Type As XlCellType, Optional Value As Object) As Range

参数

Type
XlCellType

必需 XlCellType。 要包含的单元格。 可以是以下 XlCellType 常量之一:xlCellTypeAllFormatConditions。 任意格式的单元格。xlCellTypeAllValidation。 具有验证条件的单元格。xlCellTypeBlanks。 空单元格。xlCellTypeComments。 包含备注的单元格。xlCellTypeConstants。 包含常量的单元格。xlCellTypeFormulas。 包含公式的单元格。xlCellTypeLastCell。 所用区域中的最后一个单元格。xlCellTypeSameFormatConditions。 具有相同格式的单元格。xlCellTypeSameValidation。 具有相同验证条件的单元格。xlCellTypeVisible。 所有可见单元格。

Value
Object

可选 对象。 如果 TypexlCellTypeConstantsxlCellTypeFormulas,则此参数用于确定结果中要包含的单元格类型。 将这些值相加可返回多种类型的单元格。 默认情况下,将选择所有常量或公式,无论类型如何。 可以是以下 XlSpecialCellsValue 常量之一:xlErrorsxlLogicalxlNumbersxlTextValues

返回

适用于