LWFObject.RemoveMovieEventHandler C# (CSharp) Method

RemoveMovieEventHandler() public method

public RemoveMovieEventHandler ( string instanceName, System.Action load = null, System.Action postLoad = null, System.Action unload = null, System.Action enterFrame = null, System.Action update = null, System.Action render = null ) : void
instanceName string
load System.Action
postLoad System.Action
unload System.Action
enterFrame System.Action
update System.Action
render System.Action
return void
    public void RemoveMovieEventHandler(string instanceName,
		MovieEventHandler load = null, MovieEventHandler postLoad = null,
		MovieEventHandler unload = null, MovieEventHandler enterFrame = null,
		MovieEventHandler update = null, MovieEventHandler render = null)
    {
        AddLoadCallback((o) => {lwf.RemoveMovieEventHandler(instanceName,
            load, postLoad, unload, enterFrame, update, render);});
    }