'Declaration Public Property EditorValue As DateTimeEditorValue
'Usage Dim instance As DateTimeCellType Dim value As DateTimeEditorValue instance.EditorValue = value value = instance.EditorValue
public DateTimeEditorValue EditorValue {get; set;}
'Declaration Public Property EditorValue As DateTimeEditorValue
'Usage Dim instance As DateTimeCellType Dim value As DateTimeEditorValue instance.EditorValue = value value = instance.EditorValue
public DateTimeEditorValue EditorValue {get; set;}
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;
Dim dt As New FarPoint.Win.Spread.CellType.DateTimeCellType dt.EditorValue = FarPoint.Win.Spread.CellType.DateTimeEditorValue.DateSerial fpSpread1.ActiveSheet.Cells(0, 0).CellType = dt