fpspreadsheet: Fix comments in TCell declaration

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3906 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2015-01-29 11:18:49 +00:00
parent 9ff9bc15b5
commit b765956574

View File

@ -50,16 +50,6 @@ type
Worksheet: TsWorksheet; Worksheet: TsWorksheet;
Col: Cardinal; // zero-based Col: Cardinal; // zero-based
Row: Cardinal; // zero-based Row: Cardinal; // zero-based
(*
ContentType: TCellContentType;
{ Possible values for the cells }
FormulaValue: string;
NumberValue: double;
UTF8StringValue: ansistring;
DateTimeValue: TDateTime;
BoolValue: Boolean;
ErrorValue: TsErrorValue;
*)
{ Index of format record } { Index of format record }
FormatIndex: Integer; FormatIndex: Integer;
{ Status flags } { Status flags }
@ -72,9 +62,9 @@ type
FormulaValue: String; FormulaValue: String;
case ContentType: TCellContentType of // must be at the end of the declaration case ContentType: TCellContentType of // must be at the end of the declaration
cctEmpty : (); // has no data at all cctEmpty : (); // has no data at all
cctFormula : (); // UTF8StringValue is outside the variant record cctFormula : (); // FormulaValue is outside the variant record
cctNumber : (Numbervalue: Double); cctNumber : (Numbervalue: Double);
cctUTF8String : (); // FormulaValue is outside the variant record cctUTF8String : (); // UTF8StringValue is outside the variant record
cctDateTime : (DateTimevalue: TDateTime); cctDateTime : (DateTimevalue: TDateTime);
cctBool : (BoolValue: boolean); cctBool : (BoolValue: boolean);
cctError : (ErrorValue: TsErrorValue); cctError : (ErrorValue: TsErrorValue);