SIL.FieldWorks.SharpViews.Box.SurroundHeight C# (CSharp) Method

SurroundHeight() private method

The sum of the top and bottom gaps, that is, how much higher a box is because of its top and bottom margin, border, and pad.
private SurroundHeight ( LayoutTransform trans ) : int
trans LayoutTransform
return int
		internal int SurroundHeight(LayoutTransform trans)
		{
			return GapTop(trans) + GapBottom(trans);
		}