Axiom.Overlays.Elements.TextArea.TextArea C# (CSharp) Метод

TextArea() приватный Метод

Basic constructor, internal since it should only be created by factories.
private TextArea ( string name ) : System
name string
Результат System
		internal TextArea( string name )
			: base( name )
		{
			//isTransparent = false; //[FXCop Optimization : Do not initialize unnecessarily], Defaults to false, left here for clarity
			textAlign = HorizontalAlignment.Center;


			colorTop = ColorEx.White;
			colorBottom = ColorEx.White;
			haveColorsChanged = true;

			charHeight = 0.02f;
			pixelCharHeight = 12;
			viewportAspectCoef = 1f;
		}