Click or drag to resize

MergedImageSource Constructor

Examples
C#
public RandomAccessImageSource Merge(RandomAccessImageSource a, RandomAccessImageSource b)
{
    return new MergedImageSource(a, b);
}
Overload List
  NameDescription
Public methodCode exampleMergedImageSource(RandomAccessImageSource)
Constructs a new MergedImageSource object from zero or more supplied RandomAccessImageSource objects
Protected methodMergedImageSource(SerializationInfo, StreamingContext)
Deserialize this object from the info and context.
Top
Examples
C#
public RandomAccessImageSource Merge(RandomAccessImageSource a, RandomAccessImageSource b)
{
    return new MergedImageSource(a, b);
}
See Also