public static void SetTouchStatusBackgroundColor(this IBDKCollectionIndexView This, global::UIKit.UIColor value)
 {
     if (value == null)
     {
         throw new ArgumentNullException("value");
     }
     global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("setTouchStatusBackgroundColor:"), value.Handle);
 }
        public static void SetIndexTitles(this IBDKCollectionIndexView This, NSObject[] value)
        {
            if (value == null)
            {
                throw new ArgumentNullException("value");
            }
            var nsa_value = NSArray.FromNSObjects(value);

            global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("setIndexTitles:"), nsa_value.Handle);
            nsa_value.Dispose();
        }
        public static BDKCollectionIndexViewDirection GetDirection(this IBDKCollectionIndexView This)
        {
            BDKCollectionIndexViewDirection ret;

            if (IntPtr.Size == 8)
            {
                ret = (BDKCollectionIndexViewDirection)global::ApiDefinition.Messaging.Int64_objc_msgSend(This.Handle, Selector.GetHandle("direction"));
            }
            else
            {
                ret = (BDKCollectionIndexViewDirection)global::ApiDefinition.Messaging.int_objc_msgSend(This.Handle, Selector.GetHandle("direction"));
            }
            return(ret);
        }
 public static NSObject[] GetIndexTitles(this IBDKCollectionIndexView This)
 {
     return(NSArray.ArrayFromHandle <NSObject>(global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("indexTitles"))));
 }
 public static void SetWeakDelegate(this IBDKCollectionIndexView This, NSObject value)
 {
     global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("setDelegate:"), value == null ? IntPtr.Zero : value.Handle);
 }
 public static NSObject GetWeakDelegate(this IBDKCollectionIndexView This)
 {
     return(Runtime.GetNSObject(global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("delegate"))));
 }
 public static void ReloadData(this IBDKCollectionIndexView This)
 {
     global::ApiDefinition.Messaging.void_objc_msgSend(This.Handle, Selector.GetHandle("reloadData"));
 }
 public static void SetTouchStatusViewAlpha(this IBDKCollectionIndexView This, nfloat value)
 {
     global::ApiDefinition.Messaging.void_objc_msgSend_nfloat(This.Handle, Selector.GetHandle("setTouchStatusViewAlpha:"), value);
 }
 public static nfloat GetTouchStatusViewAlpha(this IBDKCollectionIndexView This)
 {
     return(global::ApiDefinition.Messaging.nfloat_objc_msgSend(This.Handle, Selector.GetHandle("touchStatusViewAlpha")));
 }
 public static global::UIKit.UIColor GetTouchStatusBackgroundColor(this IBDKCollectionIndexView This)
 {
     return(Runtime.GetNSObject <global::UIKit.UIColor> (global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("touchStatusBackgroundColor"))));
 }
 public static global::UIKit.UIFont GetFont(this IBDKCollectionIndexView This)
 {
     return(Runtime.GetNSObject <global::UIKit.UIFont> (global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("font"))));
 }
 public static string GetCurrentIndexTitle(this IBDKCollectionIndexView This)
 {
     return(NSString.FromHandle(global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("currentIndexTitle"))));
 }
 public static nuint GetCurrentIndex(this IBDKCollectionIndexView This)
 {
     return(global::ApiDefinition.Messaging.nuint_objc_msgSend(This.Handle, Selector.GetHandle("currentIndex")));
 }