Partilhar via


Método ICategorizeProperties.MapPropertyToCategory (Int32, Int32)

 

Publicado: abril de 2016

Retorna o valor da categoria de propriedade para a propriedade especificada.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)

Sintaxe

int MapPropertyToCategory(
    int dispid,
    out int ppropcat
)
int MapPropertyToCategory(
    int dispid,
    [OutAttribute] int% ppropcat
)
abstract MapPropertyToCategory : 
        dispid:int *
        ppropcat:int byref -> int
Function MapPropertyToCategory (
    dispid As Integer,
    <OutAttribute> ByRef ppropcat As Integer
) As Integer

Parâmetros

  • dispid
    [in] Especifica a identificação de expedição da propriedade a ser exibida.
  • ppropcat
    [out] Especifica um ponteiro para a categoria de propriedade.

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::MapPropertyToCategory(
   [in] DISPID dispid, 
   [out] PROPCAT* ppropcat
);

O MapPropertyToCategory método retorna o valor de categoria de propriedade adequadas para a propriedade especificada.Há 11 categorias de propriedade predefinida com valores negativos.Você pode definir suas próprias categorias, mas você deve atribuir valores positivos.As categorias predefinidas são:

<strong>Categoria</strong>

Valor

PROPCAT_Nil

-1

PROPCAT_Misc

-2

PROPCAT_Font

-3

PROPCAT_Position

-4

PROPCAT_Appearance

-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