class MAGES::Recorder::RecorderModule::ChapterInfo

Overview

Represents chapter position information. More…

class ChapterInfo
{
public:
    // properties

    string Name;
    double Cursor;

    // methods

    ChapterInfo(double cursor, string name = null);
};

Detailed Documentation

Represents chapter position information.

Properties

string Name

Gets the chapter name.

double Cursor

Gets the chapter cursor in seconds.

Methods

ChapterInfo(double cursor, string name = null)

Initializes a new instance of the ChapterInfo class.

Parameters:

cursor

The chapter cursor in seconds.

name

The optional chapter name.