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


C# RecordInputStream.ReadByte方法代码示例

本文整理汇总了C#中RecordInputStream.ReadByte方法的典型用法代码示例。如果您正苦于以下问题:C# RecordInputStream.ReadByte方法的具体用法?C# RecordInputStream.ReadByte怎么用?C# RecordInputStream.ReadByte使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在RecordInputStream的用法示例。


在下文中一共展示了RecordInputStream.ReadByte方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ShtPropsRecord

        /**
         * Constructs a SheetProperties record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public ShtPropsRecord(RecordInputStream in1)
        {

            field_1_flags = in1.ReadShort();
            field_2_mdBlank = (byte)in1.ReadByte();
            field_3_reserved = (byte)in1.ReadByte();
        }
开发者ID:89sos98,项目名称:npoi,代码行数:13,代码来源:ShtPropsRecord.cs

示例2: SheetPropertiesRecord

        /**
         * Constructs a SheetProperties record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public SheetPropertiesRecord(RecordInputStream in1)
        {

            field_1_flags = in1.ReadShort();
            field_2_empty = (byte)in1.ReadByte();
            field_3_reserved = (byte)in1.ReadByte();
        }
开发者ID:missxiaohuang,项目名称:Weekly,代码行数:13,代码来源:SheetPropertiesRecord.cs

示例3: AutoFilterRecord

 public AutoFilterRecord(RecordInputStream in1)
 {
     field_1_iEntry = in1.ReadShort();
     field_2_grbit = in1.ReadShort();
     field_3_doper1 = new DOPERRecord(in1);
     field_4_doper2 = new DOPERRecord(in1);
     if (field_3_doper1.DataType == DOPERType.String&&field_3_doper1.LengthOfString>0)
     {
         rgch1_multibyte = (in1.ReadByte() != 0);
         if (rgch1_multibyte)
         {
             field_5_rgch1 = in1.ReadUnicodeLEString(field_3_doper1.LengthOfString);
         }
         else
         {
             field_5_rgch1 = in1.ReadCompressedUnicode(field_3_doper1.LengthOfString);
         }
     }
     if (field_4_doper2.DataType == DOPERType.String && field_4_doper2.LengthOfString > 0)
     {
         rgch2_multibyte = (in1.ReadByte() != 0);
         if (rgch2_multibyte)
         {
             field_6_rgch2 = in1.ReadUnicodeLEString(field_4_doper2.LengthOfString);
         }
         else
         {
             field_6_rgch2 = in1.ReadCompressedUnicode(field_4_doper2.LengthOfString);
         }
     }
 }
开发者ID:babywzazy,项目名称:Server,代码行数:31,代码来源:AutoFilterRecord.cs

示例4: LinkedDataRecord

        /**
         * Constructs a LinkedData record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public LinkedDataRecord(RecordInputStream in1)
        {
            field_1_linkType = (byte)in1.ReadByte();
            field_2_referenceType = (byte)in1.ReadByte();
            field_3_options = in1.ReadShort();
            field_4_indexNumberFmtRecord = in1.ReadShort();
            int encodedTokenLen = in1.ReadUShort();
            field_5_formulaOfLink = Formula.Read(encodedTokenLen, in1);
        }
开发者ID:Johnnyfly,项目名称:source20131023,代码行数:15,代码来源:LinkedDataRecord.cs

示例5: LegendRecord

 /**
  * Constructs a Legend record and Sets its fields appropriately.
  *
  * @param in the RecordInputstream to Read the record from
  */
 public LegendRecord(RecordInputStream in1)
 {
     field_1_xAxisUpperLeft = in1.ReadInt();
     field_2_yAxisUpperLeft = in1.ReadInt();
     field_3_xSize = in1.ReadInt();
     field_4_ySize = in1.ReadInt();
     field_5_type = (byte)in1.ReadByte();
     field_6_spacing = (byte)in1.ReadByte();
     field_7_options = in1.ReadShort();
 }
开发者ID:babywzazy,项目名称:Server,代码行数:15,代码来源:LegendRecord.cs

示例6: DOPERRecord

 public DOPERRecord(RecordInputStream in1)
 {
     vt=(DOPERType)in1.ReadByte();
     switch (vt)
     { 
         case DOPERType.RKNumber:
             grbitSgn = (byte)in1.ReadByte();
             _RK = new RKRecord(in1);
             in1.ReadInt();  //reserved
             break;
         case DOPERType.IEEENumber:
             grbitSgn = (byte)in1.ReadByte();
             _IEEENumber = in1.ReadDouble();
             break;          
         case DOPERType.String:
             grbitSgn = (byte)in1.ReadByte();
             in1.ReadInt();  //reserved
             CCH = (byte)in1.ReadByte();
             in1.ReadByte();     //reserved
             in1.ReadShort();    //reserved
             break;
         case DOPERType.BooleanOrErrors:
             grbitSgn = (byte)in1.ReadByte();
             fError=(byte)in1.ReadByte();
             bBoolErr=(byte)in1.ReadByte();
             in1.ReadShort();    //reserved
             in1.ReadInt();      //reserved
             break;
         default:    //FilterCondition,MatchAllBlanks,MatchNoneBlank
             grbitSgn = 0;
             in1.ReadByte();    //reserved
             in1.ReadLong();    //reserved
             break;
     }
 }
开发者ID:uwitec,项目名称:web-mvc-logistics,代码行数:35,代码来源:DOPER.cs

示例7: OfficeArtFOPTE

 public OfficeArtFOPTE(RecordInputStream ris)
 {
     Opid = new OfficeArtFOPTEOPID((ushort)ris.ReadUShort());
     Op = ris.ReadInt();
     if (Opid.IsComplex)
     {
         complexData = new byte[Op];
         for (int i = 0; i < complexData.Length; i++)
             complexData[i] = (byte)ris.ReadByte();
     }
 }
开发者ID:hanwangkun,项目名称:npoi,代码行数:11,代码来源:OfficeArtFOPTE.cs

示例8: SeriesTextRecord

        /**
         * Constructs a SeriesText record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public SeriesTextRecord(RecordInputStream in1)
        {

            field_1_id = in1.ReadShort();
            int field_2_textLength = (byte)in1.ReadByte();
            is16bit = (in1.ReadUByte() & 0x01) != 0;
            if (is16bit)
            {
                field_4_text = in1.ReadUnicodeLEString(field_2_textLength);
            }
            else
            {
                field_4_text = in1.ReadCompressedUnicode(field_2_textLength);
            }
        }
开发者ID:xoposhiy,项目名称:npoi,代码行数:21,代码来源:SeriesTextRecord.cs

示例9: Chart3DBarShapeRecord

 public Chart3DBarShapeRecord(RecordInputStream in1)
 {
     field_1_riser = (byte)in1.ReadByte();
     field_2_taper = (byte)in1.ReadByte();
 }
开发者ID:missxiaohuang,项目名称:Weekly,代码行数:5,代码来源:Chart3DBarShape.cs


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