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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。