Transform.OutputTypes Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in a derived class, gets an array of types that are possible outputs from the GetOutput() methods of the current Transform object.
public:
abstract property cli::array <Type ^> ^ OutputTypes { cli::array <Type ^> ^ get(); };
public abstract Type[] OutputTypes { get; }
member this.OutputTypes : Type[]
Public MustOverride ReadOnly Property OutputTypes As Type()
Property Value
An array of valid output types for the current Transform object; only objects of one of these types are returned from the GetOutput() methods of the current Transform object.
Remarks
The array returned by the OutputTypes property must contain at least one element because every transform must generate at least one type as output.