Share via


INSComboBoxCellDataSource Interface

Definition

This interface represents the Objective-C protocol NSComboBoxCellDataSource.

[Foundation.Protocol(Name="NSComboBoxCellDataSource", WrapperType=typeof(AppKit.NSComboBoxCellDataSourceWrapper))]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ObjectValueForItem", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSComboBoxCell), typeof(System.IntPtr) }, ReturnType=typeof(Foundation.NSObject), Selector="comboBoxCell:objectValueForItemAtIndex:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ItemCount", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(AppKit.NSComboBoxCell) }, ReturnType=typeof(System.IntPtr), Selector="numberOfItemsInComboBoxCell:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="CompletedString", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSComboBoxCell), typeof(System.String) }, ReturnType=typeof(System.String), Selector="comboBoxCell:completedString:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="IndexOfItem", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSComboBoxCell), typeof(System.String) }, ReturnType=typeof(System.UIntPtr), Selector="comboBoxCell:indexOfItemWithStringValue:")]
public interface INSComboBoxCellDataSource : IDisposable, ObjCRuntime.INativeObject
[<Foundation.Protocol(Name="NSComboBoxCellDataSource", WrapperType=typeof(AppKit.NSComboBoxCellDataSourceWrapper))>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ObjectValueForItem", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSComboBoxCell), typeof(System.IntPtr) }, ReturnType=typeof(Foundation.NSObject), Selector="comboBoxCell:objectValueForItemAtIndex:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ItemCount", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(AppKit.NSComboBoxCell) }, ReturnType=typeof(System.IntPtr), Selector="numberOfItemsInComboBoxCell:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="CompletedString", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSComboBoxCell), typeof(System.String) }, ReturnType=typeof(System.String), Selector="comboBoxCell:completedString:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="IndexOfItem", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSComboBoxCell), typeof(System.String) }, ReturnType=typeof(System.UIntPtr), Selector="comboBoxCell:indexOfItemWithStringValue:")>]
type INSComboBoxCellDataSource = interface
    interface INativeObject
    interface IDisposable
Derived
Attributes
Implements

Remarks

A class that implements this interface (and subclasses NSObject) will be exported to Objective-C as implementing the Objective-C protocol this interface represents.

A class may also implement members from this interface to implement members from the protocol.

Applies to