Package edsdk.api.commands

Examples of edsdk.api.commands.DriveLensCommand


    public FocusModeCommand useManualFocusAsync() {
        return execute( new FocusModeCommand( FocusModeCommand.Mode.MANUAL ) );
    }

    public Boolean driveLens( final EdsEvfDriveLens mode ) {
        return executeNow( new DriveLensCommand( mode ) );
    }
View Full Code Here


    public Boolean driveLens( final EdsEvfDriveLens mode ) {
        return executeNow( new DriveLensCommand( mode ) );
    }

    public DriveLensCommand driveLensAsync( final EdsEvfDriveLens mode ) {
        return execute( new DriveLensCommand( mode ) );
    }
View Full Code Here

TOP

Related Classes of edsdk.api.commands.DriveLensCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.