System.PrivateProfileString[String, String, String] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回或设置设置文件或 Windows 注册表中的字符串。
public:
property System::String ^ PrivateProfileString[System::String ^, System::String ^, System::String ^] { System::String ^ get(System::String ^ FileName, System::String ^ Section, System::String ^ Key); void set(System::String ^ FileName, System::String ^ Section, System::String ^ Key, System::String ^ value); };
public string PrivateProfileString[string FileName, string Section, string Key] { get; set; }
member this.PrivateProfileString(string * string * string) : string with get, set
Public Property PrivateProfileString(FileName As String, Section As String, Key As String) As String
参数
- FileName
- String
必需的 字符串 。 设置文件的文件名。 如果未指定路径,则假定为 Windows 文件夹。
- Section
- String
必需的 字符串 。 设置文件中包含 Key
的节的名称。 在 Windows 设置文件中,节名称显示在关联键前方括号之间, (不包含带有 Section
) 的括号。 如果要从 Windows 注册表返回条目的值,Section
则应是子项的完整路径,包括子树 (例如“HKEY_CURRENT_USER\Software\Microsoft\Office\version \Word\Options”) 。
- Key
- String
必需的 字符串 。 要检索的项设置或注册表项的值。 在 Windows 设置文件中,项名称后跟等号 (=) 和设置。 如果要从 Windows 注册表返回条目的值, Key
则应为 (指定的 Section
子项的名称,例如“STARTUP-PATH”) 。
属性值
注解
可以编写使用设置文件来存储和检索设置的代码。 例如,可以在退出Word时存储活动文档的名称,以便在下次启动 Microsoft Word 时自动重新打开该文档。 设置文件是一个文本文件,其信息安排类似 Windows 3.x 版的 WIN.INI 文件中的信息。