Example #1
0
        private void UpdateMaxLines()
        {
            var maxLines = SupportHtmlLabel.GetMaxLines(Element);

            if (maxLines == default(int))
            {
                return;
            }
            Control.SetMaxLines(maxLines);
        }
Example #2
0
        private void UpdateMaxLines()
        {
            var maxLines = SupportHtmlLabel.GetMaxLines(Element);

            if (maxLines == default(int))
            {
                return;
            }
            Control.Lines = maxLines;

            SetNeedsDisplay();
        }
Example #3
0
 public MyClickableSpan(SupportHtmlLabel label, URLSpan span)
 {
     _label = label;
     _span  = span;
 }