Método ICategorizeProperties.GetCategoryName (Int32, UInt32, String)
Publicado: abril de 2016
Retorna um BSTR contendo o nome da categoria.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int GetCategoryName(
int PROPCAT,
uint lcidCategory,
out string pbstrName
)
int GetCategoryName(
int PROPCAT,
unsigned int lcidCategory,
[OutAttribute] String^% pbstrName
)
abstract GetCategoryName :
PROPCAT:int *
lcidCategory:uint32 *
pbstrName:string byref -> int
Function GetCategoryName (
PROPCAT As Integer,
lcidCategory As UInteger,
<OutAttribute> ByRef pbstrName As String
) As Integer
Parâmetros
- PROPCAT
[in] Especifica a categoria de propriedade.
- lcid
[in] Especifica lcid.
- pbstrName
[out] Ponteiro para uma seqüência de caracteres que contém o nome da categoria.
Valor de retorno
Type: System.Int32
Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.
Comentários
COM assinatura
De objext.idl:
HRESULT ICategorizeProperties::GetCategoryName(
[in] PROPCAT propcat,
[in] LCID lcid,
[out] BSTR* pbstrName
);
O GetCategoryName método retorna um BSTR que contém o nome da categoria.Há 11 categorias de propriedade predefinida com valores negativos.Você pode definir suas próprias categorias, mas você deve atribuir os valores positivos para eles.As categorias predefinidas são:
<strong>Categoria</strong> |
Valor |
---|---|
PROPCAT_Nil |
-1 |
PROPCAT_Misc |
-2 |
PROPCAT_Font |
-3 |
PROPCAT_Position |
-4 |
PROPCAT_Appearanc |
-5 |
PROPCAT_Behavior |
-6 |
PROPCAT_Data |
-7 |
PROPCAT_List |
-8 |
PROPCAT_Text |
-9 |
PROPCAT_Scale |
-10 |
PROPCAT_DDE |
-11 |
Consulte também
Interface ICategorizeProperties
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo