MonoDevelop.Ide.Editor.Highlighting.ColorScheme.GetForeground C# (CSharp) 메소드

GetForeground() 개인적인 메소드

private GetForeground ( ChunkStyle chunkStyle ) : HslColor
chunkStyle ChunkStyle
리턴 HslColor
		internal HslColor GetForeground (ChunkStyle chunkStyle)
		{
			if (chunkStyle.TransparentForeground)
				return PlainText.Foreground;
			return chunkStyle.Foreground;
		}
	}