LinearGradientBrush
namespace System.Drawing.Drawing2D
{
public sealed class LinearGradientBrush : Brush
{
public Blend Blend {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public bool GammaCorrection {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public ColorBlend InterpolationColors {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public Color[] LinearColors {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public RectangleF Rectangle {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public Matrix Transform {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public WrapMode WrapMode {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public LinearGradientBrush(Point point1, Point point2, Color color1, Color color2)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public LinearGradientBrush(PointF point1, PointF point2, Color color1, Color color2)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public LinearGradientBrush(Rectangle rect, Color color1, Color color2, LinearGradientMode linearGradientMode)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public LinearGradientBrush(Rectangle rect, Color color1, Color color2, float angle)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public LinearGradientBrush(Rectangle rect, Color color1, Color color2, float angle, bool isAngleScaleable)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public LinearGradientBrush(RectangleF rect, Color color1, Color color2, LinearGradientMode linearGradientMode)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public LinearGradientBrush(RectangleF rect, Color color1, Color color2, float angle)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public LinearGradientBrush(RectangleF rect, Color color1, Color color2, float angle, bool isAngleScaleable)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public override object Clone()
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void MultiplyTransform(Matrix matrix)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void MultiplyTransform(Matrix matrix, MatrixOrder order)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void ResetTransform()
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void RotateTransform(float angle)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void RotateTransform(float angle, MatrixOrder order)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void ScaleTransform(float sx, float sy)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void ScaleTransform(float sx, float sy, MatrixOrder order)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void SetBlendTriangularShape(float focus)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void SetBlendTriangularShape(float focus, float scale)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void SetSigmaBellShape(float focus)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void SetSigmaBellShape(float focus, float scale)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void TranslateTransform(float dx, float dy)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void TranslateTransform(float dx, float dy, MatrixOrder order)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
}