Método UCOMITypeLib.GetDocumentation (Int32, String, String, Int32, String)
Publicado: octubre de 2016
Recupera la cadena de documentación, el nombre completo del archivo de ayuda y ruta de acceso y el identificador de contexto para el tema de Ayuda de la biblioteca en el archivo de ayuda.
Espacio de nombres: System.Runtime.InteropServices
Ensamblado: mscorlib (en mscorlib.dll)
Sintaxis
void GetDocumentation(
int index,
out string strName,
out string strDocString,
out int dwHelpContext,
out string strHelpFile
)
void GetDocumentation(
int index,
[OutAttribute] String^% strName,
[OutAttribute] String^% strDocString,
[OutAttribute] int% dwHelpContext,
[OutAttribute] String^% strHelpFile
)
abstract GetDocumentation :
index:int *
strName:string byref *
strDocString:string byref *
dwHelpContext:int byref *
strHelpFile:string byref -> unit
Sub GetDocumentation (
index As Integer,
<OutAttribute> ByRef strName As String,
<OutAttribute> ByRef strDocString As String,
<OutAttribute> ByRef dwHelpContext As Integer,
<OutAttribute> ByRef strHelpFile As String
)
Parámetros
index
Type: System.Int32Índice de la descripción de tipo cuya documentación se va a devolver.
strName
Type: System.StringDevuelve una cadena que contiene el nombre del elemento especificado.
strDocString
Type: System.StringDevuelve una cadena que contiene la cadena de documentación para el elemento especificado.
dwHelpContext
Type: System.Int32Devuelve el identificador de contexto de ayuda asociado al elemento especificado.
strHelpFile
Type: System.StringDevuelve una cadena que contiene el nombre completo del archivo de ayuda.
Comentarios
Para obtener información adicional acerca de ITypeLib::GetDocumentation, vea MSDN Library.
Información de versión
.NET Framework
Disponible desde 1.1
Ver también
Interfaz UCOMITypeLib
Espacio de nombres System.Runtime.InteropServices
Volver al principio