formula one 有没有类似excel的format为 文本的功能 ? ( 积分: 50 )

  • 主题发起人 主题发起人 yyxzz
  • 开始时间 开始时间
Y

yyxzz

Unregistered / Unconfirmed
GUEST, unregistred user!
只发现如下几种
FormatCurrency0 method 货币
FormatCurrency2 method货币
FormatFixed method
FormatFixed2 method
FormatFraction method分数
FormatGeneral method通常
FormatHmmampm method时间
FormatMdyy method日期
FormatPercent method百分比
FormatScientific method科学
 
只发现如下几种
FormatCurrency0 method 货币
FormatCurrency2 method货币
FormatFixed method
FormatFixed2 method
FormatFraction method分数
FormatGeneral method通常
FormatHmmampm method时间
FormatMdyy method日期
FormatPercent method百分比
FormatScientific method科学
 
你在输入数据时,自动给加一个'号在前面,就会当做字符输入,如果是程序的话
textrc[row,col]:=值.是输入字符,numberrc[row,col]是输入数字。
formularc[row,col]是输入公式
 
CellFmt := st.GetCellFormat;
CellFmt.FontName := '宋体';
CellFmt.FontSize := 8;
CellFmt.borderstyle[F1TopBorder] := F1BorderThin;
CellFmt.borderstyle[F1LeftBorder] := F1BorderThick;
CellFmt.borderstyle[F1BottomBorder] := F1BorderThin;
CellFmt.borderstyle[F1RightBorder] := F1BorderThin;
st.Row := 22;
st.Col := 34;
st.SetCellFormat(CellFmt);
我想这个CellFmt对象对你可能有用。你好好看看它吧。
 
谢谢 you are so beautiful
 
后退
顶部