예제 #1
0
 public ABMutableStringMultiValue()
     : base(ABMultiValue.CreateMutable(ABPropertyType.MultiString),
            ABPerson.ToString, ABPerson.ToIntPtr)
 {
 }
예제 #2
0
 public ABMutableDictionaryMultiValue()
     : base(ABMultiValue.CreateMutable(ABPropertyType.MultiDictionary))
 {
 }
예제 #3
0
 public bool RemoveAt(nint index)
 {
     return(ABMultiValue.RemoveValueAndLabelAtIndex(Handle, index));
 }
예제 #4
0
 public ABMutableDateMultiValue()
     : base(ABMultiValue.CreateMutable(ABPropertyType.MultiDateTime))
 {
 }
예제 #5
0
 internal ABMultiValueEntry(ABMultiValue <T> self, nint index)
 {
     this.self  = self;
     this.index = index;
 }