[]
        
(Showing Draft Content)

GrapeCity.Forguncy.CellTypes.IStaticValueCellType

接口 IStaticValueCellType

忽略单元格的值,可以自定义单元格类型返回的值; 例如,如果一个单元格引用登录用户单元格类型的值,返回的是当前用户,而非单元格上的值或0。

命名空间: GrapeCity.Forguncy.CellTypes
程序集: GrapeCity.Forguncy.CellTypes.dll
语法
public interface IStaticValueCellType

属性

CellCustomValue

单元格返回的自定义固定值。

声明
object CellCustomValue { get; }
属性值
类型 描述
object
示例
public class CurrentUserCellType : CellType, IStaticValueCellType
{
    public object CellCustomValue
    {
        get
        {
            return "%CurrentUser%";
        }
    }
}