C# 클래스 Nexus.Client.Games.Gamebryo.Tools.TESsnip.GroupRecord

Encapsulates interacting with a record that is a group of other records.
상속: Rec
파일 보기 프로젝트 열기: NexusMods/NexusModManager-4.5 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Records List
dateStamp uint
flags uint
groupType uint

공개 메소드들

메소드 설명
AddRecord ( BaseRecord br ) : void

Adds the given sub-record to the record.

Clone ( ) : BaseRecord

Clones the record.

DeleteRecord ( BaseRecord br ) : void

Deletes the specified sub-record from the record.

GetData ( ) : byte[]

Gets the record's data.

GetDesc ( ) : string

Gets the description of the record.

GroupRecord ( string data ) : System

A simple constructor that initializes the object with the given data.

SetData ( byte data ) : void

Sets the record's data.

비공개 메소드들

메소드 설명
GetIDs ( bool lower ) : List

Gets the ids of the sub-records in the record.

GetReadonlyData ( ) : byte[]
GetSubDesc ( ) : string
GroupRecord ( GroupRecord gr ) : System

The copy constructor.

GroupRecord ( uint Size, BinaryReader br, bool Oblivion ) : System

A simple constructor that initializes the object with the given values.

SaveData ( BinaryWriter bw ) : void

메소드 상세

AddRecord() 공개 메소드

Adds the given sub-record to the record.
public AddRecord ( BaseRecord br ) : void
br BaseRecord The record to add.
리턴 void

Clone() 공개 메소드

Clones the record.
public Clone ( ) : BaseRecord
리턴 BaseRecord

DeleteRecord() 공개 메소드

Deletes the specified sub-record from the record.
public DeleteRecord ( BaseRecord br ) : void
br BaseRecord The record to delete.
리턴 void

GetData() 공개 메소드

Gets the record's data.
public GetData ( ) : byte[]
리턴 byte[]

GetDesc() 공개 메소드

Gets the description of the record.
public GetDesc ( ) : string
리턴 string

GroupRecord() 공개 메소드

A simple constructor that initializes the object with the given data.
public GroupRecord ( string data ) : System
data string The group record data.
리턴 System

SetData() 공개 메소드

Sets the record's data.
public SetData ( byte data ) : void
data byte The new record data.
리턴 void

프로퍼티 상세

Records 공개적으로 프로퍼티

The records in the group.
public List Records
리턴 List

dateStamp 공개적으로 프로퍼티

The modified time of the group.
public uint dateStamp
리턴 uint

flags 공개적으로 프로퍼티

The group flags.
public uint flags
리턴 uint

groupType 공개적으로 프로퍼티

The type of the group.
public uint groupType
리턴 uint