当前位置: 首页>>代码示例>>C#>>正文


C# Spreadsheet.CT_BooleanProperty类代码示例

本文整理汇总了C#中NPOI.OpenXmlFormats.Spreadsheet.CT_BooleanProperty的典型用法代码示例。如果您正苦于以下问题:C# CT_BooleanProperty类的具体用法?C# CT_BooleanProperty怎么用?C# CT_BooleanProperty使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


CT_BooleanProperty类属于NPOI.OpenXmlFormats.Spreadsheet命名空间,在下文中一共展示了CT_BooleanProperty类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: AddNewOutline

 public CT_BooleanProperty AddNewOutline()
 {
     this.outlineField = new CT_BooleanProperty();
     return this.outlineField;
 }
开发者ID:kenlen,项目名称:npoi,代码行数:5,代码来源:Styles.cs

示例2: SetStrikeArray

 public void SetStrikeArray(int index, CT_BooleanProperty value)
 {
     this.strikeField[index]= value;
 }
开发者ID:kenlen,项目名称:npoi,代码行数:4,代码来源:Styles.cs

示例3: SetIArray

 public void SetIArray(CT_BooleanProperty[] array)
 {
     if (array == null)
         this.iField = new List<CT_BooleanProperty>();
     else
         this.iField = new List<CT_BooleanProperty>(array);
 }
开发者ID:kenlen,项目名称:npoi,代码行数:7,代码来源:Styles.cs

示例4: AddNewStrike

 public CT_BooleanProperty AddNewStrike()
 {
     CT_BooleanProperty prop = new CT_BooleanProperty();
     this.strikeField.Add(prop);
     return prop;
 }
开发者ID:kenlen,项目名称:npoi,代码行数:6,代码来源:Styles.cs

示例5: AddNewCondense

 public CT_BooleanProperty AddNewCondense()
 {
     this.condenseField = new CT_BooleanProperty();
     return this.condenseField;
 }
开发者ID:kenlen,项目名称:npoi,代码行数:5,代码来源:Styles.cs

示例6: AddNewI

 public CT_BooleanProperty AddNewI()
 {
     if (this.iField == null)
         this.iField = new List<CT_BooleanProperty>();
     CT_BooleanProperty newI = new CT_BooleanProperty();
     this.iField.Add(newI);
     return newI;
 }
开发者ID:hjlfmy,项目名称:npoi,代码行数:8,代码来源:CT_Font.cs

示例7: Parse

 public static CT_BooleanProperty Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_BooleanProperty ctObj = new CT_BooleanProperty();
     if (node.Attributes["val"]!=null)
         ctObj.val = XmlHelper.ReadBool(node.Attributes["val"]);
     return ctObj;
 }
开发者ID:JnS-Software-LLC,项目名称:npoi,代码行数:9,代码来源:Styles.cs

示例8: AddNewB

 public CT_BooleanProperty AddNewB()
 {
     CT_BooleanProperty newB = new CT_BooleanProperty();
     this.bField.Add(newB);
     return newB;
 }
开发者ID:kenlen,项目名称:npoi,代码行数:6,代码来源:Styles.cs

示例9: AddNewStrike

 public CT_BooleanProperty AddNewStrike()
 {
     this.strikeField = new CT_BooleanProperty();
     return this.strikeField;
 }
开发者ID:JustinChangTW,项目名称:npoi,代码行数:5,代码来源:CT_RPrElt.cs

示例10: SetStrikeArray

 public void SetStrikeArray(CT_BooleanProperty[] array)
 {
     this.strikeField = array.Length > 0 ? array[0] : null;
 }
开发者ID:JustinChangTW,项目名称:npoi,代码行数:4,代码来源:CT_RPrElt.cs

示例11: SetIArray

 public void SetIArray(CT_BooleanProperty[] array)
 {
     this.iField = array.Length > 0 ? array[0] : null;
 }
开发者ID:JustinChangTW,项目名称:npoi,代码行数:4,代码来源:CT_RPrElt.cs

示例12: AddNewI

 public CT_BooleanProperty AddNewI()
 {
     this.iField = new CT_BooleanProperty();
     return this.iField;
 }
开发者ID:JustinChangTW,项目名称:npoi,代码行数:5,代码来源:CT_RPrElt.cs

示例13: AddNewStrike

 public CT_BooleanProperty AddNewStrike()
 {
     if (this.strikeField == null)
         this.strikeField = new List<CT_BooleanProperty>();
     CT_BooleanProperty prop = new CT_BooleanProperty();
     this.strikeField.Add(prop);
     return prop;
 }
开发者ID:hjlfmy,项目名称:npoi,代码行数:8,代码来源:CT_Font.cs

示例14: SetOutlineArray

 public void SetOutlineArray(CT_BooleanProperty[] array)
 {
     this.outlineField = array.Length > 0 ? array[0] : null;
 }
开发者ID:kenlen,项目名称:npoi,代码行数:4,代码来源:Styles.cs

示例15: AddNewI

 public CT_BooleanProperty AddNewI()
 {
     CT_BooleanProperty newI=new CT_BooleanProperty();
     this.iField.Add(newI);
     return newI;
 }
开发者ID:kenlen,项目名称:npoi,代码行数:6,代码来源:Styles.cs


注:本文中的NPOI.OpenXmlFormats.Spreadsheet.CT_BooleanProperty类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。