IPersistFileFormat.Load 方法
打开已指定的文件并初始化从文件内容的对象。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)
语法
声明
Function Load ( _
pszFilename As String, _
grfMode As UInteger, _
fReadOnly As Integer _
) As Integer
int Load(
string pszFilename,
uint grfMode,
int fReadOnly
)
参数
- pszFilename
类型:System.String
[in] 对文件的名称的指针加载的,因此,现有文件,应始终包括完整路径。
- grfMode
类型:System.UInt32
[in] 文件格式模式。如果零,对象使用常用的默认值,就好像用户打开该文件。
- fReadOnly
类型:System.Int32
[in] true 指示应打开文件为只读。
返回值
类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 fpstfmt.idl:
HRESULT IPersistFileFormat::Load(
[in] LPCOLESTR pszFilename,
[in] DWORD grfMode,
[in] BOOL fReadOnly
);
IPersistFileFormat.Load 方法可能会返回 STG_E_INVALIDCODEPAGE 或 STG_S_DATALOSS。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。