다음을 통해 공유


XmlMappedRange.SpecialCells(XlCellType, Object) 메서드

정의

지정된 서식 및 값과 일치하는 모든 셀을 나타내는 Range를 가져옵니다.

public Microsoft.Office.Interop.Excel.Range SpecialCells (Microsoft.Office.Interop.Excel.XlCellType Type, object Value);
abstract member SpecialCells : Microsoft.Office.Interop.Excel.XlCellType * obj -> Microsoft.Office.Interop.Excel.Range
Public Function SpecialCells (Type As XlCellType, Optional Value As Object) As Range

매개 변수

Type
XlCellType

포함할 셀입니다. 다음 XlCellTypexlCellTypeAllFormatConditions중 하나일 수 있습니다. 서식이 지정된 셀입니다. xlCellTypeAllValidation. 유효성 확인 조건이 있는 셀입니다. xlCellTypeBlanks. 빈 셀입니다. xlCellTypeComments. 메모가 있는 셀입니다. xlCellTypeConstants. 상수가 있는 셀입니다. xlCellTypeFormulas. 수식이 있는 셀입니다. xlCellTypeLastCell. 사용된 범위에 있는 마지막 셀입니다. xlCellTypeSameFormatConditions. 서식이 같은 셀입니다. xlCellTypeSameValidation. 유효성 확인 조건이 같은 셀입니다. xlCellTypeVisible. 표시되는 모든 셀입니다.

Value
Object

xlCellTypeConstants 또는 xlCellTypeFormulas이면 Type 이 인수를 사용하여 결과에 포함할 셀 유형을 결정합니다. 이러한 값을 함께 추가하여 여러 서식을 반환할 수 있습니다. 기본적으로 서식에 상관없이 모든 상수와 수식이 선택됩니다. 다음 XlSpecialCellsValue 값 중 하나일 수 있습니다. xlErrorsxlLogicalxlNumbersxlTextValues

반환

지정된 서식 및 값과 일치하는 모든 셀을 나타내는 Range입니다.

예제

다음 코드 예제에서는 메서드를 SpecialCells 사용하여 내에 XmlMappedRange주석이 포함된 셀 범위를 가져와서 선택합니다. 이 코드 예제에서는 현재 워크시트에 라는 가 CustomerLastNameCell포함되어 있다고 XmlMappedRange 가정합니다.

private void SelectRangeWithComments()
{
    this.CustomerLastNameCell.AddComment("This cell contains " +
        "a last name.");

    Excel.Range range1 = this.CustomerLastNameCell.SpecialCells(
        Excel.XlCellType.xlCellTypeComments);
    range1.Select();
}
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

설명

선택적 매개 변수

선택적 매개 변수에 대한 자세한 내용은 Office 솔루션의 선택적 매개 변수를 참조하세요.

적용 대상