# GetPrivateProfileFloat 方法

GetPrivateProfileFloat(AppName, KeyName, Default, FileName)

从INI文件中读取浮点数变量,返回值:返回从INI文件读取的数据

参数
参数 说明
AppName 应用分类名称
KeyName 主键名称
Default 默认值,当INI文件不存在或者主键不存在时的默认返回值
FileName INI文件的全路径名称
示例
Reuslt = Document.GetPrivateProfileFloat("MyCpp", "Stock", 1, "C:\Stock.ini")
1

应用于

Document 对象