using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WMFConverter.Gdi
{
///
/// Graphics Device Interface - Represents a Pen object.
///
public interface IGdiPen : IGdiObject
{
#region Properties
///
/// Object Style.
///
int Style { get; }
///
/// Object Width.
///
int Width { get; }
///
/// Object Color.
///
int Color { get; }
#endregion
}
}