コード例 #1
0
ファイル: Styles.cs プロジェクト: rodrigofigueiredo9/SIMLAM
        internal object GetCellStyleProperty(StylePropertyAccessor getDelegate)
        {
            if (GetParentBook() == null)
            {
                return(getDelegate(Parent.FirstCell()));
            }

            XmlStyle style = GetParentBook().GetStyleByID(Parent.StyleID);

            return(getDelegate(style));
        }