[]
        
(Showing Draft Content)

GrapeCity.Forguncy.CellTypes.CellTypeStyleTemplate

类 CellTypeStyleTemplate

单元格的模板样式。它定义了该单元格的一份完整的样式外观,包括该单元格由几个模板组件组成,以及每个模板组件的具体样式。

继承
object
CellTypeStyleTemplate
命名空间: GrapeCity.Forguncy.CellTypes
程序集: GrapeCity.Forguncy.CellTypes.dll
语法
public class CellTypeStyleTemplate

构造函数

CellTypeStyleTemplate()

构造函数。

声明
public CellTypeStyleTemplate()

属性

Category

单元格模板样式的所属类目。用于给模板样式分类。在设计器的功能区,预览模板样式时,它可以区分不同分类的模板样式。

声明
public string Category { get; set; }
属性值
类型 描述
string

Key

单元格模板样式的唯一标识。

声明
public string Key { get; set; }
属性值
类型 描述
string

Scope

指定样式可以生效的范围

声明
public StyleTemplateScope Scope { get; set; }
属性值
类型 描述
StyleTemplateScope

Styles

单元格模板样式的样式组成。它是一个字典,Key为模板组件,Value为每个模板组件的具体样式信息。单元格的模板样式,由该单元格所包含的模板组件的样式所组成。一个单元格可以有一个或多个模板组件。

声明
public Dictionary<string, TemplatePartStyle> Styles { get; set; }
属性值
类型 描述
System.Collections.Generic.Dictionary<TKey, TValue><string, TemplatePartStyle>

方法

Clone()

克隆单元格模板样式。

声明
public CellTypeStyleTemplate Clone()
返回值
类型 描述
CellTypeStyleTemplate

克隆后的单元格模板样式。