Axiom.Samples.ParamsPanel.GetParamValue C# (CSharp) Метод

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

public GetParamValue ( int index ) : String
index int
Результат String
		public String GetParamValue( int index )
		{
			if ( index < 0 || index >= this.names.Count )
			{
				String desc = "ParamsPanel \"" + Name + "\" has no parameter at position " + index + ".";
				throw new System.IndexOutOfRangeException( desc );
			}

			return this.values[ index ];
		}

Same methods

ParamsPanel::GetParamValue ( String paramName ) : String