コード例 #1
0
 public NSMutableAttributedStringWrapper(string data)
 {
     s = new NativeNSMutableAttributedString(data);
 }
コード例 #2
0
 public static void AddAttributes(this NativeNSMutableAttributedString s, NativeCTStringAttributes a, StringRange r)
 {
     s.AddAttributes(a, new NSRange(r.Location, r.Length));
 }
コード例 #3
0
 public NSMutableAttributedStringWrapper(NativeNSMutableAttributedString ns)
 {
     s = ns;
 }