------ #### RaUIV4 V4.0.2311.0701 - *.[全新]整合了MyDb、ryControls、MyDb_MySQL等dll文件到RaUI一个项目。 - *.[新增]新增ApkOp类,可以轻松获取APK信息。 - *.[新增]新增JsonExt扩展类,让Json操作更简单。 - *.[新增]新增WebP类,可以支持webp格式的图片。 - *.[改进]ryQuickSQL中的AddField方法改为自动替换已存在的同名值。 - *.[修复]ryQuickSQL中的AddFieldCalc方法无法正常计算的BUG。
33 lines
713 B
C#
33 lines
713 B
C#
// "Therefore those skilled at the unorthodox
|
|
// are infinite as heaven and earth,
|
|
// inexhaustible as the great rivers.
|
|
// When they come to an end,
|
|
// they begin again,
|
|
// like the days and months;
|
|
// they die and are reborn,
|
|
// like the four seasons."
|
|
//
|
|
// - Sun Tsu,
|
|
// "The Art of War"
|
|
|
|
namespace TheArtOfDev.HtmlRenderer.Core.Dom
|
|
{
|
|
/// <summary>
|
|
/// Represents the possible units of the CSS lengths
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://www.w3.org/TR/CSS21/syndata.html#length-units
|
|
/// </remarks>
|
|
internal enum CssUnit
|
|
{
|
|
None,
|
|
Ems,
|
|
Pixels,
|
|
Ex,
|
|
Inches,
|
|
Centimeters,
|
|
Milimeters,
|
|
Points,
|
|
Picas
|
|
}
|
|
} |