| KaxComboBoxFindItemByText Method (String) | 
          
        
        
        
            Finds the first KaxComboBoxItem with Text that
            matches the given text value.
            
         
        Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic KaxComboBoxItem FindItemByText(
	string text
)
Public Function FindItemByText ( 
	text As String
) As KaxComboBoxItem
public:
KaxComboBoxItem^ FindItemByText(
	String^ text
)
member FindItemByText : 
        text : string -> KaxComboBoxItem 
Parameters
- text
 - Type: SystemString
The string to search for. 
Return Value
Type: 
KaxComboBoxItemThe first KaxComboBoxItem that matches the
            specified text value.
ExamplesDim item As KaxComboBoxItem = KaxComboBox1.FindItemByText("New York")KaxComboBoxItem item = KaxComboBox1.FindItemByText("New York");
See Also