本文整理汇总了C#中LF.Utils.NPOI.HSSF.Record.RecordInputStream.ReadLong方法的典型用法代码示例。如果您正苦于以下问题:C# RecordInputStream.ReadLong方法的具体用法?C# RecordInputStream.ReadLong怎么用?C# RecordInputStream.ReadLong使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LF.Utils.NPOI.HSSF.Record.RecordInputStream
的用法示例。
在下文中一共展示了RecordInputStream.ReadLong方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SheetExtRecord
public SheetExtRecord(RecordInputStream in1)
{
rt = in1.ReadShort();
if (rt != 0x0862)
{
throw new ArgumentException("frtHeader.rt must be equals 0x0862 in SheetExt record");
}
grbitFrt = in1.ReadShort();
in1.ReadInt(); //reserved
in1.ReadInt(); //reserved
cb = in1.ReadInt();
optionflag = in1.ReadShort();
in1.ReadShort(); //reserved
if (cb == 0x28)
{
optionflag2 = in1.ReadShort();
xclrType = in1.ReadInt();
xclrValue = in1.ReadInt();
numTint = in1.ReadLong();
in1.ReadShort();
}
}
示例2: FormulaRecord
/**
* Constructs a Formula record and Sets its fields appropriately.
* Note - id must be 0x06 (NOT 0x406 see MSKB #Q184647 for an
* "explanation of this bug in the documentation) or an exception
* will be throw upon validation
*
* @param in the RecordInputstream to Read the record from
*/
public FormulaRecord(RecordInputStream in1):base(in1)
{
long valueLongBits = in1.ReadLong();
field_5_options = in1.ReadShort();
specialCachedValue = SpecialCachedValue.Create(valueLongBits);
if (specialCachedValue == null) {
field_4_value = BitConverter.Int64BitsToDouble(valueLongBits);
}
field_6_zero = in1.ReadInt();
int field_7_expression_len = in1.ReadShort();
field_8_parsed_expr = LF.Utils.NPOI.SS.Formula.Formula.Read(field_7_expression_len, in1,in1.Available());
}