Axiom.Overlays.Elements.TextArea.BottomColorAttributeCommand.Get C# (CSharp) Méthode

Get() public méthode

Gets the value for this command from the target object.
public Get ( object target ) : string
target object
Résultat string
			public string Get( object target )
			{
				var element = target as TextArea;
				if ( element != null )
				{
					return StringConverter.ToString( element.ColorBottom );
				}
				else
				{
					return String.Empty;
				}
			}
TextArea.BottomColorAttributeCommand