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