CustomLineCap
namespace System.Drawing.Drawing2D
{
public class CustomLineCap : MarshalByRefObject, ICloneable, IDisposable
{
public LineCap BaseCap {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public float BaseInset {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public LineJoin StrokeJoin {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public float WidthScale {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath, LineCap baseCap)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath, LineCap baseCap, float baseInset)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public object Clone()
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void Dispose()
{
}
protected virtual void Dispose(bool disposing)
{
}
public void GetStrokeCaps(out LineCap startCap, out LineCap endCap)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void SetStrokeCaps(LineCap startCap, LineCap endCap)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
}