WMEncBasicEdit.OnStateChange

Windows Media Encoder SDK banner art

The OnStateChange event receives an event notice indicating whether postprocessing has been started or stopped.

Syntax

WMEncBasicEdit.OnStateChange(enumState)

Parameters

enumState

[in]  Specifies a member of the WMENC_BASICEDIT_STATE enumeration type indicating the state of postprocessing.

Return Values

This method does not return a value.

Example Code

Private Sub BasicEdit_OnStateChange( _
ByVal EnumState As WMEncoderLib.WMENC_BASICEDIT_STATE)
    If EnumState = WMENC_BASICEDIT_STOPPED Then
        ' Process the case.
    End If
End Sub

Requirements

Reference: Windows Media Encoder

Library: wmenc.exe

See Also