天软金融分析.NET函数大全 > TSL函数 > 基础函数 > 日期时间 > 简单转换函数

IntToDate    

简述
将整型的日期转换成日期类型的日期
定义
IntToDate(Rdate:Integer):TDateTime;
参数
名称类型说明
RdateInteger整型
返回TDateTime日期类型的日期,以实数表示的日期
  • 范例


    Rdate:=20110116;
    Return IntToDate(Rdate);
    //结果: 40559
相关