Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PropertyArrangeMode.cs « Xamarin.PropertyEditing - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f7ba8b3d123d3f2bd26b30254ee1fc4c6b7ef63 (plain)
1
2
3
4
5
6
7
8
9
10
using System;
namespace Xamarin.PropertyEditing
{
	public enum PropertyArrangeMode
	{
		Name = 0,
		Category = 1,
		ValueSource = 2
	}
}