LayoutControls.UserSettings.LabelUserSettings.LabelUserSettings C# (CSharp) Method

LabelUserSettings() public method

Initializes a new instance of the LabelUserSettings class.
public LabelUserSettings ( ) : System
return System
    public LabelUserSettings()
    {
        m_oFont = (Font)( new FontConverter() ).ConvertFromInvariantString(
            GeneralUserSettings.DefaultFont);

        m_oVertexLabelFillColor = Color.White;
        m_eVertexLabelPosition = VertexLabelPosition.BottomCenter;

        m_iVertexLabelMaximumLength = m_iEdgeLabelMaximumLength =
            Int32.MaxValue;

        m_bVertexLabelWrapText = true;
        m_dVertexLabelWrapMaxTextWidth = 200;

        m_oEdgeLabelTextColor = Color.Black;

        m_oGroupLabelTextColor = Color.Black;
        m_fGroupLabelTextAlpha = 86;
        m_eGroupLabelPosition = VertexLabelPosition.MiddleCenter;

        AssertValid();
    }