﻿	public:
		property Convert<MyGUI::Any>::Type #{PropertyName}
		{
			Convert<MyGUI::Any>::Type get( )
			{
				MMYGUI_CHECK_NATIVE(mNative);
				ObjectHolder* data = static_cast<ThisType*>(mNative)->get#{PropertyName}< ObjectHolder >(false);
				return data ? data->toObject() : nullptr;
			}
			void set(Convert<MyGUI::Any>::Type _value)
			{
				MMYGUI_CHECK_NATIVE(mNative);
				static_cast<ThisType*>(mNative)->set#{PropertyName}( Convert<MyGUI::Any>::From(_value) );
			}
		}
	