SharpMap.Styles.LabelStyle.LabelStyle C# (CSharp) Method

LabelStyle() public method

Initializes a new LabelStyle
public LabelStyle ( ) : System
return System
        public LabelStyle()
        {
            _Font = new System.Drawing.Font("Times New Roman", 12f);
            _Offset = new System.Drawing.PointF(0, 0);
            _CollisionDetection = false;
            _CollisionBuffer = new System.Drawing.Size(0, 0);
            _ForeColor = System.Drawing.Color.Black;
            _HorisontalAlignment = HorizontalAlignmentEnum.Center;
            _VerticalAlignment = VerticalAlignmentEnum.Middle;
        }
LabelStyle