__VSMEPROPID Enumeração
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Especifica as IDs de Propriedade do editor de menus.
public enum class __VSMEPROPID
public enum class __VSMEPROPID
enum __VSMEPROPID
public enum __VSMEPROPID
type __VSMEPROPID =
Public Enum __VSMEPROPID
- Herança
-
__VSMEPROPID
Campos
| VSMEPROPID_ACCEL | -1006 | Acelerador (tecla de atalho) |
| VSMEPROPID_BARBREAK | -1010 | Barra divisória |
| VSMEPROPID_BOLD | -1005 | Legenda em negrito |
| VSMEPROPID_BREAK | -1009 | Dividindo espaço |
| VSMEPROPID_CAPTION | -1001 | Legenda |
| VSMEPROPID_CHECKED | -1002 | Item selecionado |
| VSMEPROPID_ENABLED | -1003 | Item habilitado |
| VSMEPROPID_EXTRAPROPS | -1008 | Mostra que um menu pode ser expandido para mostrar itens adicionais. |
| VSMEPROPID_FIRST | -1000 | Indica o primeiro VSMEPROPID_ |
| VSMEPROPID_LAST | -1011 | Indica a última VSMEPROPID_ |
| VSMEPROPID_NAME | -1000 | Nome |
| VSMEPROPID_RADIOCHECK | -1007 | Caixa de seleção de rádio |
| VSMEPROPID_RIGHTJUSTIFY | -1011 | Texto justificado à direita |
| VSMEPROPID_VISIBLE | -1004 | Item visível |
Comentários
A enumeração VSMEPROPID é usada com IVsMenuItem , <xref:Microsoft.VisualStudio.Shell.Interop.IMenuEditorSite> e OnChange .
Assinatura COM
De VSShell. idl:
enum __VSMEPROPID
{
VSMEPROPID_FIRST = -1000,
VSMEPROPID_NAME = -1000, // VT_BSTR
VSMEPROPID_CAPTION = -1001, // VT_BSTR
VSMEPROPID_CHECKED = -1002, // VT_BOOL
VSMEPROPID_ENABLED = -1003, // VT_BOOL
VSMEPROPID_VISIBLE = -1004, // VT_BOOL
VSMEPROPID_BOLD = -1005, // VT_BOOL
VSMEPROPID_ACCEL = -1006, // VT_I4 - (DWORD)
VSMEPROPID_RADIOCHECK = -1007, // VT_BOOL
VSMEPROPID_EXTRAPROPS = -1008,
VSMEPROPID_BREAK = -1009,
VSMEPROPID_BARBREAK = -1010,
VSMEPROPID_RIGHTJUSTIFY = -1011,
VSMEPROPID_LAST = -1011
};
typedef LONG VSMEPROPID;