Insert

Insert(int, string)

将格式化文本片段插入集合中给定索引处。

public void Insert(int index, string text)
范围 类型 描述
index Int32 应插入格式化文本片段的从零开始的索引。
text String 片段文本。

也可以看看


Insert(int, string, Font)

将格式化文本片段插入集合中给定索引处。

public void Insert(int index, string text, Font font)
范围 类型 描述
index Int32 应插入格式化文本片段的从零开始的索引。
text String 片段文本。
font Font 文本的字体。

也可以看看


Insert(int, string, Font, Color)

将格式化文本片段插入集合中给定索引处。

public void Insert(int index, string text, Font font, Color foregroundColor)
范围 类型 描述
index Int32 应插入格式化文本片段的从零开始的索引。
text String 片段文本。
font Font 文本的字体。
foregroundColor Color 文本的前景色。

也可以看看


Insert(int, string, Font, Color, Color)

将格式化文本片段插入集合中给定索引处。

public void Insert(int index, string text, Font font, Color foregroundColor, Color backgroundColor)
范围 类型 描述
index Int32 应插入格式化文本片段的从零开始的索引。
text String 片段文本。
font Font 文本的字体。
foregroundColor Color 文本的前景色。
backgroundColor Color 文本的背景颜色。

也可以看看