示例#1
0
 internal void SetSolidLine(A.SchemeColorValues Color, decimal Tint, decimal Transparency)
 {
     UseSolidLine = true;
     SolidColor.SetColor(Color, Tint, Transparency);
 }
示例#2
0
 /// <summary>
 ///     Set a solid line given a color for the line and the transparency of the color.
 /// </summary>
 /// <param name="Color">The theme color to be used.</param>
 /// <param name="Tint">
 ///     The tint applied to the theme color, ranging from -1.0 to 1.0. Negative tints darken the theme color
 ///     and positive tints lighten the theme color.
 /// </param>
 /// <param name="Transparency">Transparency of the color ranging from 0% to 100%. Accurate to 1/1000 of a percent.</param>
 public void SetSolidLine(SLThemeColorIndexValues Color, double Tint, decimal Transparency)
 {
     UseSolidLine = true;
     SolidColor.SetColor(Color, Tint, Transparency);
 }
示例#3
0
 /// <summary>
 ///     Set a solid line given a color for the line and the transparency of the color.
 /// </summary>
 /// <param name="Color">The color to be used.</param>
 /// <param name="Transparency">Transparency of the color ranging from 0% to 100%. Accurate to 1/1000 of a percent.</param>
 public void SetSolidLine(Color Color, decimal Transparency)
 {
     UseSolidLine = true;
     SolidColor.SetColor(Color, Transparency);
 }
示例#4
0
 internal void SetSolidFill(A.SchemeColorValues FillColor, decimal Tint, decimal Transparency)
 {
     Type = SLFillType.SolidFill;
     SolidColor.SetColor(FillColor, Tint, Transparency);
 }
示例#5
0
 /// <summary>
 ///     Set a solid fill.
 /// </summary>
 /// <param name="FillColor">The theme color used.</param>
 /// <param name="Tint">
 ///     The tint applied to the theme color, ranging from -1.0 to 1.0. Negative tints darken the theme color
 ///     and positive tints lighten the theme color.
 /// </param>
 /// <param name="Transparency">Transparency of the color ranging from 0% to 100%. Accurate to 1/1000 of a percent.</param>
 public void SetSolidFill(SLThemeColorIndexValues FillColor, double Tint, decimal Transparency)
 {
     Type = SLFillType.SolidFill;
     SolidColor.SetColor(FillColor, Tint, Transparency);
 }
示例#6
0
 /// <summary>
 ///     Set a solid fill.
 /// </summary>
 /// <param name="FillColor">The color used.</param>
 /// <param name="Transparency">Transparency of the color ranging from 0% to 100%. Accurate to 1/1000 of a percent.</param>
 public void SetSolidFill(Color FillColor, decimal Transparency)
 {
     Type = SLFillType.SolidFill;
     SolidColor.SetColor(FillColor, Transparency);
 }