⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 enums.cs

📁 英语句子自然语言处理统计分析例子 Statistical parsing of English sentences Shows how to generate parse trees for
💻 CS
字号:
using System;

namespace Netron.Lithium
{
	/// <summary>
	/// The shape types available in this assembly
	/// </summary>
	public enum ShapeTypes
	{
		/// <summary>
		/// the default rectangular shape
		/// </summary>
		Rectangular,
		/// <summary>
		/// an oval shape
		/// </summary>
		Oval,
		/// <summary>
		/// a text label
		/// </summary>
		TextLabel
	}

	/// <summary>
	/// The direction in which the tree layout spreads the diagram
	/// </summary>
	public enum TreeDirection
	{
		/// <summary>
		/// the layout orders the shapes along the vertical line
		/// </summary>
		Vertical,
		/// <summary>
		/// the layout orders the shapes along an horizontal line
		/// </summary>
		Horizontal
	}

	/// <summary>
	/// The types of connections in this assembly
	/// </summary>
	public enum ConnectionType
	{
		/// <summary>
		/// The default connection simply connects the centers of the shapes
		/// </summary>
		Default,
		/// <summary>
		/// the traditional connection is a rectangular connections which mimics the traditional
		/// layout of hierarchies and flowcharts
		/// </summary>
		Traditional,
		/// <summary>
		/// a smoothly curved form connecting the shapes
		/// </summary>
		Bezier
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -