RenderText.Style.LineSpacingプロパティを設定します。
サンプルコード(VB) |
コードのコピー
|
---|---|
' 行間隔を200%に設定します。 texts(0).Text = "行間隔 = 200%" & vbLf & "2行目" & vbLf & "3行目" texts(0).Style.LineSpacing = 200 ' 行間隔を設定しません。 texts(1).Text = "行間隔 = 100%" & vbLf & "2行目" & vbLf & "3行目" ' 行間隔を75%に設定します。 texts(2).Text = "行間隔 = 75%" & vbLf & "2行目" & vbLf & "3行目" texts(2).Style.LineSpacing = 75 |
サンプルコード(C#) |
コードのコピー
|
---|---|
// 行間隔を200%に設定します。 texts[0].Text = "行間隔 = 200%\n2行目\n3行目"; texts[0].Style.LineSpacing = 200; // 行間隔を設定しません。 texts[1].Text = "行間隔 = 100%\n2行目\n3行目"; // 行間隔を75%に設定します。 texts[2].Text = "行間隔 = 75%\n2行目\n3行目"; texts[2].Style.LineSpacing = 75; |