特定の行のフォントを変更したい。これが私のコードです...
string[] textBoxLines = richTextBox1.Lines;
foreach (string line in textBoxLines)
{
if(line.StartsWith("-->"))
{
//here is my problem, how to can change the font in the spectific line...
}
}
特定の行のフォントを変更したい。これが私のコードです...
string[] textBoxLines = richTextBox1.Lines;
foreach (string line in textBoxLines)
{
if(line.StartsWith("-->"))
{
//here is my problem, how to can change the font in the spectific line...
}
}