VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing Namespace / CompositeCommand Class / Commands Property
Syntax Exceptions Requirements SeeAlso
In This Topic
    Commands Property (CompositeCommand)
    In This Topic
    Gets or sets an array of processing commands.
    Syntax
    'Declaration
    
    Protected Property Commands As ProcessingCommandBase[]
    
    
    protected ProcessingCommandBase[] Commands { get; set; }
    
    
    protected: __property ProcessingCommandBase*[] get_Commands();
    protected: __property void set_Commands(
    ProcessingCommandBase*[]* value
    );
    protected:
    property ProcessingCommandBase^[] Commands { ProcessingCommandBase^[] get(); void set(array<ProcessingCommandBase^>^ value); }
    Exceptions
    ExceptionDescription
    Thrown if value is null.
    Thrown if the new sequence of processing commands does not have suitable input pixel formats. This means that sequence has 2 or more incompatible neighboring commands. Neighboring commands are incompatible if the first command returns image in pixel format, which is not compatible with the input pixel format of the second command.
    Requirements

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

    See Also