Dundas.SharePoint.Charting.WebParts Send comments on this topic.
FindCommand(String) Method
See Also  Example
Dundas.Charting.WebControl Namespace > CommandCollection Class > FindCommand Method : FindCommand(String) Method


commandName
The name of the command to search.
Searches by name for the Command and its sub-commands.

Syntax

Visual Basic (Declaration)  
Public Overloads Function FindCommand( _
   ByVal commandName As String _
) As Command
Visual Basic (Usage) Copy Code
Dim instance As CommandCollection
Dim commandName As String
Dim value As Command
 
value = instance.FindCommand(commandName)
C#  
public Command FindCommand( 
   string commandName
)

Parameters

commandName
The name of the command to search.

Return Value

Command reference or null if not found

Example

C# Copy Code
chart1.UI.Commands.Find( "Properties");
VB.Net Copy Code
chart1.UI.Commands.Find("Properties")

Remarks

See also of the Command.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also