共用方式為


XmlMappedRange.Validation 屬性

取得 Microsoft.Office.Interop.Excel.Validation 物件,表示 XmlMappedRange 控制項的資料驗證。

命名空間:  Microsoft.Office.Tools.Excel
組件:  Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)

語法

'宣告
ReadOnly Property Validation As Validation
    Get
Validation Validation { get; }

屬性值

型別:Microsoft.Office.Interop.Excel.Validation
Microsoft.Office.Interop.Excel.Validation 物件,表示 XmlMappedRange 控制項的資料驗證。

範例

下列程式碼範例使用 Validation 屬性,如果在 XmlMappedRange 中輸入的字元少於 3,則顯示驗證錯誤。 這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange

Private Sub SetValidation()
    Me.CustomerLastNameCell.Validation.Add( _
        Excel.XlDVType.xlValidateTextLength, _
        Excel.XlDVAlertStyle.xlValidAlertInformation, _
        Excel.XlFormatConditionOperator.xlGreaterEqual, 3)

    Me.CustomerLastNameCell.Validation.ErrorMessage = _
        "You must enter a name with three or more letters."
End Sub
private void SetValidation()
{
    this.CustomerLastNameCell.Validation.Add(
        Excel.XlDVType.xlValidateTextLength, 
        Excel.XlDVAlertStyle.xlValidAlertInformation,
        Excel.XlFormatConditionOperator.xlGreaterEqual, 3, missing);

    this.CustomerLastNameCell.Validation.ErrorMessage = 
        "You must enter a name with three or more letters.";
}

.NET Framework 安全性

請參閱

參考

XmlMappedRange 介面

Microsoft.Office.Tools.Excel 命名空間