IPersistFileFormat.GetCurFile 方法

返回路径到对象的当前工作文件,或者,如果没有一种当前工作文件,对象的默认文件名提示。

命名空间:  Microsoft.VisualStudio.Shell.Interop
程序集:  Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)

语法

声明
Function GetCurFile ( _
    <OutAttribute> ByRef ppszFilename As String, _
    <OutAttribute> ByRef pnFormatIndex As UInteger _
) As Integer
int GetCurFile(
    out string ppszFilename,
    out uint pnFormatIndex
)

参数

  • ppszFilename
    类型:System.String%
    [out] 对文件名的指针。如果对象具有有效的文件名,文件名的形式返回 ppszFilename 参数。如果对象会将没有权限的状态, nullnull 引用(在 Visual Basic 中为 Nothing) 返回作为 ppszFilename 参数。
    说明 此结果与标准 GetCurFile 有所不同,返回 S_FALSE 和 “另存为”提示字符串。
  • pnFormatIndex
    类型:System.UInt32%
    [out] 值指示文件为当前格式。此值被解释为零开始的索引。格式列表,如返回到 GetFormatList的调用。零开始的索引值指示第一个布局, 1 秒的格式,依此类推。如果对象仅支持一种格式,则返回零。随后,它返回单个元素与其通过调用布局表格到 GetFormatList

返回值

类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。

备注

COM 签名

从 fpstfmt.idl:

HRESULT IPersistFileFormat::GetCurFile(
   [out] LPOLESTR *ppszFilename,
   [out] DWORD *pnFormatIndex
);

此方法类似于 GetCurFile。以保存当前文件为当前格式,请调用 GetCurFile 检索当前格式为为了能正确传递到 Save 方法。

.NET Framework 安全性

请参见

参考

IPersistFileFormat 接口

Microsoft.VisualStudio.Shell.Interop 命名空间