Axiom.Overlays.Elements.Panel.UVCoordinatesAttributeCommand.Get C# (CSharp) Метод

Get() публичный Метод

Gets the value for this command from the target object.
public Get ( object target ) : string
target object
Результат string
			public string Get( object target )
			{
				var element = target as Panel;
				if ( element != null )
				{
					Real u1, v1, u2, v2;
					element.GetUV( out u1, out v1, out u2, out v2 );
					return string.Format( "{0} {1} {2} {3}", u1, v1, u2, v2 );
				}
				else
				{
					return String.Empty;
				}
			}
Panel.UVCoordinatesAttributeCommand