當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。