mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
22 lines
522 B
C#
22 lines
522 B
C#
using System.Drawing;
|
|
|
|
namespace Nikse.SubtitleEdit.Core
|
|
{
|
|
public class SccPositionAndStyle
|
|
{
|
|
public Color ForeColor { get; }
|
|
public FontStyle Style { get; }
|
|
public int X { get; }
|
|
public int Y { get; }
|
|
public string Code { get; }
|
|
|
|
public SccPositionAndStyle(Color color, FontStyle style, int y, int x, string code)
|
|
{
|
|
ForeColor = color;
|
|
Style = style;
|
|
X = x;
|
|
Y = y;
|
|
Code = code;
|
|
}
|
|
}
|
|
} |