Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Indicates the dialog box template to use.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function MungeDialogFont ( _
dwSize As UInteger, _
pDlgTemplate As Byte(), _
<OutAttribute> ByRef ppDlgTemplateOut As IntPtr _
) As Integer
'Usage
Dim instance As IUIHostLocale2
Dim dwSize As UInteger
Dim pDlgTemplate As Byte()
Dim ppDlgTemplateOut As IntPtr
Dim returnValue As Integer
returnValue = instance.MungeDialogFont(dwSize, _
pDlgTemplate, ppDlgTemplateOut)
int MungeDialogFont(
uint dwSize,
byte[] pDlgTemplate,
out IntPtr ppDlgTemplateOut
)
int MungeDialogFont(
[InAttribute] unsigned int dwSize,
[InAttribute] array<unsigned char>^ pDlgTemplate,
[OutAttribute] IntPtr% ppDlgTemplateOut
)
abstract MungeDialogFont :
dwSize:uint32 *
pDlgTemplate:byte[] *
ppDlgTemplateOut:IntPtr byref -> int
function MungeDialogFont(
dwSize : uint,
pDlgTemplate : byte[],
ppDlgTemplateOut : IntPtr
) : int
Parameters
- dwSize
Type: System.UInt32
[in] Dialog box font size.
- pDlgTemplate
Type: array<System.Byte[]
[in, size_is(dwSize)] Font size passed in with dwSize.
- ppDlgTemplateOut
Type: System.IntPtr%
[out] Pointer to the processed dialog box template.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From uilocale.idl:
HRESULT IUIHostLocale2::MungeDialogFont(
[in] DWORD dwSize,
[in, size_is(dwSize)] const BYTE *pDlgTemplate,
[out] BYTE **ppDlgTemplateOut
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.