Freigeben über


IToolboxUser.GetToolSupported-Methode

Ruft einen Wert ab, der angibt, ob das angegebene Tool vom aktuellen Designer unterstützt wird.

Namespace: System.Drawing.Design
Assembly: System.Drawing (in system.drawing.dll)

Syntax

'Declaration
Function GetToolSupported ( _
    tool As ToolboxItem _
) As Boolean
'Usage
Dim instance As IToolboxUser
Dim tool As ToolboxItem
Dim returnValue As Boolean

returnValue = instance.GetToolSupported(tool)
bool GetToolSupported (
    ToolboxItem tool
)
bool GetToolSupported (
    ToolboxItem^ tool
)
boolean GetToolSupported (
    ToolboxItem tool
)
function GetToolSupported (
    tool : ToolboxItem
) : boolean

Parameter

  • tool
    Das ToolboxItem, für das auf Toolboxunterstützung getestet wird.

Rückgabewert

true, wenn das Tool von der Toolbox unterstützt wird und aktiviert werden kann. false, wenn der Dokument-Designer das Tool nicht unterstützt.

Hinweise

Wenn das angegebene Tool von dem Designer unterstützt wird, der die IToolboxUser-Schnittstelle implementiert, wird das Tool in der Toolbox aktiviert, sobald dieser Designer den Fokus erhält. Andernfalls wird es deaktiviert. Sobald ein Tool als aktiviert oder deaktiviert gekennzeichnet wurde, kann es für diesen Designer nicht mehr auf Unterstützung getestet werden.

Beispiel

Im folgenden Codebeispiel wird eine Implementierung der GetToolSupported-Methode veranschaulicht.

' This method can signal whether to enable or disable the specified
' ToolboxItem when the component associated with this designer is selected.
Function GetToolSupported(ByVal tool As ToolboxItem) As Boolean Implements IToolboxUser.GetToolSupported
    ' Search the blocked type names array for the type name of the tool
    ' for which support for is being tested. Return false to indicate the
    ' tool should be disabled when the associated component is selected.
    Dim i As Integer
    For i = 0 To blockedTypeNames.Length - 1
        If tool.TypeName = blockedTypeNames(i) Then
            Return False
        End If
    Next i ' Return true to indicate support for the tool, if the type name of the
    ' tool is not located in the blockedTypeNames string array.
    Return True
End Function
// This method can signal whether to enable or disable the specified
// ToolboxItem when the component associated with this designer is selected.
bool IToolboxUser.GetToolSupported(ToolboxItem tool)
{       
    // Search the blocked type names array for the type name of the tool
    // for which support for is being tested. Return false to indicate the
    // tool should be disabled when the associated component is selected.
    for( int i=0; i<blockedTypeNames.Length; i++ )
        if( tool.TypeName == blockedTypeNames[i] )
            return false;
    
    // Return true to indicate support for the tool, if the type name of the
    // tool is not located in the blockedTypeNames string array.
    return true;
}

Plattformen

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

IToolboxUser-Schnittstelle
IToolboxUser-Member
System.Drawing.Design-Namespace
ToolboxItem