; } [Page]
set { fontFamily = value; }
}
private float fontSize;
public float FontSize
{
get { return fontSize; }
set { fontSize = value; }
}
private FontStyle nfontStyle;
public FontStyle NFontStyle
{
get { return nfontStyle; }
set { nfontStyle = value; }
}
public void SetFont(string fontFamily, float fontSize, FontStyle fontStyle)
{
if (Font != null)
{
Font(fontFamily, fontSize, fontStyle);
}
}
}
}