using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WMFConverter.Wmf
{
///
/// Windows Metafile - Represents WMF Brush object.
///
public class WmfBrush : WmfObject, Gdi.IGdiBrush
{
#region Local Variables
private int _style;
private int _color;
private int _hatch;
#endregion
#region Properties
///
/// Object Style.
///
public int Style
{
get
{
return _style;
}
}
///
/// Object Color.
///
public int Color
{
get
{
return _color;
}
}
///
/// Object Hatch.
///
public int Hatch
{
get
{
return _hatch;
}
}
///
/// Default Constructor
///
///
///
///
///
public WmfBrush(int id, int style, int color, int hatch)
:base (id)
{
_style = style;
_color = color;
_hatch = hatch;
}
#endregion
}
}