コード例 #1
0
 public int GetNotesTextPositionsSize(NoteType noteType)
 {
     return _fieldHandler.GetFieldSize(noteType
             .GetFibTextPositionsFieldIndex());
 }
コード例 #2
0
 public void SetNotesTextPositionsSize(NoteType noteType, int offset)
 {
     _fieldHandler.SetFieldSize(noteType.GetFibTextPositionsFieldIndex(),
             offset);
 }
コード例 #3
0
 public int GetNotesDescriptorsSize(NoteType noteType)
 {
     return _fieldHandler.GetFieldSize(noteType
             .GetFibDescriptorsFieldIndex());
 }
コード例 #4
0
 public void SetNotesDescriptorsSize(NoteType noteType, int offset)
 {
     _fieldHandler.SetFieldSize(noteType.GetFibDescriptorsFieldIndex(),
             offset);
 }
コード例 #5
0
ファイル: NotesTables.cs プロジェクト: ctddjyds/npoi
 public NotesTables(NoteType noteType, byte[] tableStream,
         FileInformationBlock fib)
 {
     this.noteType = noteType;
     Read(tableStream, fib);
 }
コード例 #6
0
 public int GetNotesDescriptorsOffset(NoteType noteType)
 {
     return _fieldHandler.GetFieldOffset(noteType
             .GetFibDescriptorsFieldIndex());
 }
コード例 #7
0
ファイル: NotesTables.cs プロジェクト: ctddjyds/npoi
 public NotesTables(NoteType noteType)
 {
     this.noteType = noteType;
     textPositions
             .AddProperty(new GenericPropertyNode(0, 1, new byte[0]));
 }
コード例 #8
0
ファイル: FileInformationBlock.cs プロジェクト: yesonsik/npoi
 public void SetNotesTextPositionsSize(NoteType noteType, int offset)
 {
     _fieldHandler.SetFieldSize(noteType.GetFibTextPositionsFieldIndex(),
                                offset);
 }
コード例 #9
0
ファイル: FileInformationBlock.cs プロジェクト: yesonsik/npoi
 public int GetNotesTextPositionsSize(NoteType noteType)
 {
     return(_fieldHandler.GetFieldSize(noteType
                                       .GetFibTextPositionsFieldIndex()));
 }
コード例 #10
0
ファイル: FileInformationBlock.cs プロジェクト: yesonsik/npoi
 public void SetNotesDescriptorsSize(NoteType noteType, int offset)
 {
     _fieldHandler.SetFieldSize(noteType.GetFibDescriptorsFieldIndex(),
                                offset);
 }
コード例 #11
0
ファイル: FileInformationBlock.cs プロジェクト: yesonsik/npoi
 public int GetNotesDescriptorsSize(NoteType noteType)
 {
     return(_fieldHandler.GetFieldSize(noteType
                                       .GetFibDescriptorsFieldIndex()));
 }