CIRCDCC.getNextID Member
Syntax
object.getNextID();
Returns
Remarks
See Also
Source Code
function dcc_getnextid()
{
this._lastID++;
if (this._lastID > DCC_ID_MAX)
this._lastID = 0;
// Format to DCC_ID_MAX's number of digits.
var id = this._lastID.toString(16);
while (id.length < DCC_ID_MAX.toString(16).length)
id = "0" + id;
return id;
}