public static int GetLastLineFillingPercent(this UITextView This)
 {
     return(This.GetAssociatedObject <NSNumber>(LastLineFillingPercentKey)?.Int32Value ??
            SkeletonConfig.Default.MultilineLastLineFillPercent);
 }
 public static int GetNumLines(this UITextView This)
 {
     return(This.GetAssociatedObject <NSNumber>(NumLinesKey)?.Int32Value ?? 0);
 }