using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Editors
{
///
/// Represents different modes for the .
///
public enum ElementsEditorMode
{
///
/// The editor will behave as normal.
///
Default,
///
/// Hides the rulers, auto editor size, disables zooming and panning.
///
AdvancedCanvas,
}
}