[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IValidation.InputTitle

InputTitle Property

InputTitle

Gets or sets the title of the data-validation input dialog box.

Use this property to retrieve or configure the title for the input prompt of a validated cell or range.

Declaration
string InputTitle { get; set; }
Property InputTitle As String
Examples
IValidation validation = worksheet.Range["A1"].Validation;
validation.Add(ValidationType.Whole, ValidationAlertStyle.Stop, ValidationOperator.Between, 1, 10);
validation.InputTitle = "Tips";
string title = validation.InputTitle;