[]
        
(Showing Draft Content)

GrapeCity.Forguncy.CellTypes.IDisablePropertySettings

接口 IDisablePropertySettings

获取单元格类型中不可用的样式属性,如对齐方式等。

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

方法

GetDisabledPropertySettings(ForguncyPageKind)

根据页面类型获取单元格类型不可用的样式属性。

声明
ForguncyDisabledSettings GetDisabledPropertySettings(ForguncyPageKind pageType)
参数
类型 名称 描述
ForguncyPageKind pageType

页面类型。

返回值
类型 描述
ForguncyDisabledSettings

返回不可用的样式属性。

示例
public class DateCellType : CellType, IDisablePropertySettings
{
    public ForguncyDisabledSettings GetDisabledPropertySettings(ForguncyPageKind pageType)
    {
        return ForguncyDisabledSettings.TopAlignment | ForguncyDisabledSettings.MiddleAlignment | ForguncyDisabledSettings.BottomAlignment;
    }
}