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

📄 htmlenumerations.cs

📁 一个很好用的html编辑器。带源码
💻 CS
字号:
using System;

namespace Microsoft.ConsultingServices.HtmlEditor
{

	// Enum used to insert a list
	public enum HtmlListType
	{
		Ordered,
		Unordered

	} //HtmlListType


	// Enum used to insert a heading
	public enum HtmlHeadingType
	{
		H1 = 1,
		H2 = 2,
		H3 = 3,
		H4 = 4,
		H5 = 5

	} //HtmlHeadingType


	// Enum used to define the navigate action on a user clicking a href
	public enum NavigateActionOption
	{
		Default,
		NewWindow,
		SameWindow

	} //NavigateActionOption


	// Enum used to define the image align property
	public enum ImageAlignOption
	{
		AbsBottom,
		AbsMiddle,
		Baseline,
		Bottom,
		Left,
		Middle,
		Right,
		TextTop,
		Top

	} //ImageAlignOption


	// Enum used to define the text alignment property
	public enum HorizontalAlignOption
	{
		Default,
		Left,
		Center,
		Right

	} //HorizontalAlignOption


	// Enum used to define the vertical alignment property
	public enum VerticalAlignOption
	{
		Default,
		Top,
		Bottom

	} //VerticalAlignOption


	// Enum used to define the visibility of the scroll bars
	public enum DisplayScrollBarOption
	{
		Yes,
		No,
		Auto

	} //DisplayScrollBarOption


	// Enum used to define the unit of measure for a value
	public enum MeasurementOption
	{
		Pixel,
		Percent

	} //MeasurementOption

}

⌨️ 快捷键说明

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