System.Windows.Forms.Label.CalcAutoSize C# (CSharp) Method

CalcAutoSize() private method

private CalcAutoSize ( ) : void
return void
		private void CalcAutoSize ()
		{
			m_helper.TextContainer.TextView.AutoresizingMask = NSViewResizingMask.WidthSizable;
			var frame = m_helper.TextContainer.TextView.Frame;
			m_helper.HorizontallyResizable = true;
			m_helper.TextContainer.TextView.Frame = new RectangleF(frame.Location,new SizeF(9999,frame.Height));
			m_helper.Frame = new RectangleF(m_helper.Frame.Location, m_helper.TextContainer.TextView.Frame.Size);
		}
	}