[]
忽略单元格的值,可以自定义单元格类型返回的值; 例如,如果一个单元格引用登录用户单元格类型的值,返回的是当前用户,而非单元格上的值或0。
public interface IStaticValueCellType
单元格返回的自定义固定值。
object CellCustomValue { get; }
类型 | 描述 |
---|---|
object |
public class CurrentUserCellType : CellType, IStaticValueCellType
{
public object CellCustomValue
{
get
{
return "%CurrentUser%";
}
}
}