FlatRedBall.Glue.GuiDisplay.AvailableAnimationChainsStringConverter.GetStandardValues C# (CSharp) Method

GetStandardValues() public method

public GetStandardValues ( ITypeDescriptorContext context ) : StandardValuesCollection
context ITypeDescriptorContext
return StandardValuesCollection
					 GetStandardValues(ITypeDescriptorContext context)
		{
            // We can't cache this because the same object may reuse its type converter when properties change on the property grid
            RefreshList();
            StandardValuesCollection svc = new StandardValuesCollection(mAvailableChains);

			return svc;
		} 
    }