Class SingleArgumentDataValidationRuleContext
Represents a single argument data validation rule context.
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Model.DataValidation
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class SingleArgumentDataValidationRuleContext : DataValidationRuleContextBase
  Constructors
SingleArgumentDataValidationRuleContext(Worksheet, Int32, Int32)
Initializes a new instance of the SingleArgumentDataValidationRuleContext class.
Declaration
public SingleArgumentDataValidationRuleContext(Worksheet worksheet, int rowIndex, int columnIndex)
  Parameters
| 
        Worksheet
        worksheet
         The worksheet.  | 
    
| 
        System.Int32
        rowIndex
         Index of the row.  | 
    
| 
        System.Int32
        columnIndex
         Index of the column.  | 
    
SingleArgumentDataValidationRuleContext(Worksheet, CellIndex)
Initializes a new instance of the SingleArgumentDataValidationRuleContext class.
Declaration
public SingleArgumentDataValidationRuleContext(Worksheet worksheet, CellIndex cellIndex)
  Parameters
| 
        Worksheet
        worksheet
         
  | 
    
| 
        CellIndex
        cellIndex
         
  | 
    
Properties
Argument1
Gets or sets the first argument.
Declaration
public string Argument1 { get; set; }
  Property Value
| 
        System.String
         The first argument.  | 
    
CellIndex
Gets or sets the index of the cell in which the Validation rule is created.
Declaration
public CellIndex CellIndex { get; set; }
  Property Value
| 
        CellIndex
         The index of the cell.  | 
    
IgnoreBlank
Gets or sets a value indicating if blank cells should be ignored.
Declaration
public bool IgnoreBlank { get; set; }
  Property Value
| 
        System.Boolean
         The value indicating if blank cells should be ignored.  | 
    
Worksheet
Gets or sets the worksheet.
Declaration
public Worksheet Worksheet { get; set; }
  Property Value
| 
        Worksheet
         The worksheet.  |