Show / Hide Table of Contents

Class InputCells

This collection describes each input cell for the scenario.

Inheritance
System.Object
InputCells
Namespace: DRIT.Spreadsheet
Assembly: DRIT.Spreadsheet.dll
Syntax
public class InputCells : object

Properties

Cell

Declaration
public Cell Cell { get; set; }
Property Value
Type Description
Cell

Deleted

Input cell was deleted. This input cell shall be present in the file format, but shall not be presented to the user as part of the scenario inputs, nor run as part of the scenario.

Declaration
public bool Deleted { get; set; }
Property Value
Type Description
System.Boolean

NumberFormatId

This number format Id is used only when displaying the scenario manager input UI, and is used to properly format for display the cached input values (see val attribute) for the scenario.

Declaration
public int NumberFormatId { get; set; }
Property Value
Type Description
System.Int32

Reference

Cell reference indicating the input cell address.

Declaration
public string Reference { get; }
Property Value
Type Description
System.String

Undone

Cell's deletion was undone. When true the r (reference) value shall not adjust in response to the cell moving due to row / column insert or delete,or cell move.

Declaration
public bool Undone { get; set; }
Property Value
Type Description
System.Boolean

Value

Value that should be used for the cell when this scenario is run.

Declaration
public string Value { get; set; }
Property Value
Type Description
System.String
Back to top Generated by DocFX