IToolboxUser.GetToolSupported(ToolboxItem) Yöntem

Tanım

Belirtilen aracın geçerli tasarımcı tarafından desteklenip desteklenmediğini belirten bir değer alır.

public:
 bool GetToolSupported(System::Drawing::Design::ToolboxItem ^ tool);
public bool GetToolSupported (System.Drawing.Design.ToolboxItem tool);
abstract member GetToolSupported : System.Drawing.Design.ToolboxItem -> bool
Public Function GetToolSupported (tool As ToolboxItem) As Boolean

Parametreler

tool
ToolboxItem

ToolboxItem araç kutusu desteği için test edilecek.

Döndürülenler

true araç kutusu tarafından destekleniyorsa ve etkinleştirilebiliyorsa; false belge tasarımcısı aracın nasıl kullanılacağını bilmiyorsa.

Örnekler

Aşağıdaki kod örneği, yönteminin GetToolSupported bir uygulamasını gösterir.

// 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;
}
// 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;
}
' 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

Açıklamalar

Belirtilen araç arabirimi uygulayan IToolboxUser tasarımcı tarafından destekleniyorsa, bu tasarımcı odaklandığında araç kutusunda etkinleştirilir. Aksi takdirde devre dışı bırakılır. Bir araç etkin veya devre dışı olarak işaretlendikten sonra, aynı tasarımcıyla destek için yeniden test edilmeyebilir.

Şunlara uygulanır

Ayrıca bkz.