Gets or sets what value is written to the underlying data model.
            
            
            
 Syntax
Syntax
            
            
            Property Value
DateTimeEditorValue setting that determines the type of data used in the data model for date-time cell values
 
            
			
			
            Remarks
            
             Example
Example
This example writes the serial value to the model.
             
| C# |  Copy Code | 
|---|
| FarPoint.Win.Spread.CellType.DateTimeCellType dt = new FarPoint.Win.Spread.CellType.DateTimeCellType();
dt.EditorValue = FarPoint.Win.Spread.CellType.DateTimeEditorValue.DateSerial;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = dt;
 | 
| Visual Basic |  Copy Code | 
|---|
| Dim dt As New FarPoint.Win.Spread.CellType.DateTimeCellType
dt.EditorValue = FarPoint.Win.Spread.CellType.DateTimeEditorValue.DateSerial
FpSpread1.ActiveSheet.Cells(0, 0).CellType = dt | 
 Requirements
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
 See Also
See Also