BodyProperties.ColumnCount 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
列数
表示架构中的以下属性:numCol
[DocumentFormat.OpenXml.SchemaAttr(0, "numCol")]
public DocumentFormat.OpenXml.Int32Value ColumnCount { get; set; }
public DocumentFormat.OpenXml.Int32Value ColumnCount { get; set; }
[DocumentFormat.OpenXml.SchemaAttr(0, "numCol")]
public DocumentFormat.OpenXml.Int32Value? ColumnCount { get; set; }
[DocumentFormat.OpenXml.SchemaAttr("numCol")]
public DocumentFormat.OpenXml.Int32Value? ColumnCount { get; set; }
public DocumentFormat.OpenXml.Int32Value? ColumnCount { get; set; }
member this.ColumnCount : DocumentFormat.OpenXml.Int32Value with get, set
[<DocumentFormat.OpenXml.SchemaAttr(0, "numCol")>]
member this.ColumnCount : DocumentFormat.OpenXml.Int32Value with get, set
[<DocumentFormat.OpenXml.SchemaAttr("numCol")>]
member this.ColumnCount : DocumentFormat.OpenXml.Int32Value with get, set
Public Property ColumnCount As Int32Value
属性值
返回 Int32Value。
- 属性
注解
使用此类时,ECMA 国际标准 ECMA-376 中的以下信息可能很有用。
指定边框中文本的列数。 当应用于文本运行时,此属性采用文本的边界框的宽度,并将其除以指定的列数。 然后,这些列被视为溢出容器,当上一列已用文本填充时,下一列将充当其他文本的存储库。 当所有列都已填充且文本仍保留时,将使用为此文本正文设置的溢出属性,并将重新排列文本,以便为其他文本腾出空间。 如果省略此属性,则隐含 的值 1
。
请考虑需要将文本区域拆分为四个单独的列的情况。 然后,只需指定一个段落并运行一个文本,就足以在此处描述四列文本。
<p:txBody>
<a:bodyPr numCol="4" … />
<a:p>
<a:r>
…
(Some text)
…
</a:r>
</a:p>
</p:txBody>
此属性的可能值由 ST_TextColumnCount
简单类型定义。