using System; using System.Collections.Generic; using System.Text; namespace DevComponents.Tree { /// /// Defines settings for text rendering. /// internal static class TextSettings { private static int _TextMarkupCultureSpecific = 3; /// /// Get or sets the text-markup padding for text measurement when running on Japanese version of Windows. /// public static int TextMarkupCultureSpecificPadding { get { return _TextMarkupCultureSpecific; } set { _TextMarkupCultureSpecific = value; } } } }