VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing Namespace / ImageProcessingCommandFactory Class / CreateCommand Methods / CreateCommand<T>(Type) Method
Syntax Requirements SeeAlso
In This Topic
    CreateCommand<T>(Type) Method (ImageProcessingCommandFactory)
    In This Topic
    Creates a processing command to process an image of specified codec.
    Syntax
    'Declaration
    
    Public Overloads Shared Function CreateCommand<T
    Type of processing command.
    >( _
    ByVal decoderType
    The type of image decoder.
    As System.Type _
    ) As T (Of T
    Type of processing command.
    As ProcessingCommandBase)
    public static T CreateCommand<T>(
    System.Type decoderType
    ) where T: ProcessingCommandBase
    public: static T* CreateCommand<T>(
    System.Type* decoderType
    ) where T: ProcessingCommandBase*
    generic<typename T>
    public:
    static T^ CreateCommand(
    System.Type^ decoderType
    ) where T: ProcessingCommandBase^

    Parameters

    decoderType
    The type of image decoder.

    Type Parameters

    T
    Type of processing command.

    Return Value

    A new instance of T or instance of type derived from T.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also