Plugin System Setting Date Time not just Date
Is there a way to make as Plugin System Setting and/or a custom setting be a full Date and Time and not Just a Date?
The Jiwa community forums
https://forums.jiwa.com.au/
if(CustomField.PluginCustomField.Name == "MyDateTimeField")
{
FarPoint.Win.Spread.CellType.DateTimeCellType myDateTimeFieldCell = (FarPoint.Win.Spread.CellType.DateTimeCellType)GridObject.ActiveSheet.Cells[Row, Col].CellType;
myDateTimeFieldCell.DateTimeFormat = FarPoint.Win.Spread.CellType.DateTimeFormat.ShortDateWithTime;
}