ImageGear for C and C++ on Windows v21.0 - Updated
API Reference Guide / Core Component API Reference / Core Component Functions Reference / Multimedia Functions / IG_mult_current_frame_reset
In This Topic
    IG_mult_current_frame_reset
    In This Topic

    This function resets the current frame to the first frame.

    Declaration:

     
    Copy Code
    AT_ERRCOUNT ACCUAPI IG_mult_current_frame_reset(HIGMULT hMult);
    

    Arguments:

    Name Type Description
    hMult HIGMULT Multimedia instance handle.

    Return Value:

    Returns the number of ImageGear errors that occurred during this function call. If there are no errors, the return value is IGE_SUCCESS.

    Supported Raster Image Formats:

    This function does not process image pixels.

    Sample:

    Media Player

    Example:

     
    Copy Code
    AT_ERRCOUNT nErrcount;  /* Number of errors on stack */
    HIGMULT hMult;          /* Multimedia instance handle */
    nErrcount = IG_mult_current_frame_reset(hMult);
    

    Remarks:

    You can use it to seek to the beginning of a multimedia instance.