C# Класс Nexus.Client.Games.Gamebryo.Tools.TESsnip.GroupRecord

Encapsulates interacting with a record that is a group of other records.
Наследование: Rec
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
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