This enumeration is used by the various classes and methods that apply a transform to a matrix or graphics object to determine whether the matrix is pre- or post-multiplied. (Remember: matrixes are non-commutative, so the multiplication order is important). public enum MatrixOrder { Prepend = 0 , Append = 1 } Hierarchy System.Object Passed ToMultiple types |