次の方法で共有


BodyProperties.ColumnCount プロパティ

定義

列の数

スキーマ内の次の属性を表します: 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 値が暗黙的に指定されます。

テキスト領域を 4 つの個別の列に分割する必要がある場合を考えてみましょう。 次に、テキストを 1 回実行して 1 つの段落を指定するだけで、ここで 4 列のテキストを記述するだけで十分です。

<p:txBody>  
  <a:bodyPr numCol="4" … />  
  <a:p>  
    <a:r>  
      …  
      (Some text)  
      …  
    </a:r>  
  </a:p>  
</p:txBody>  

この属性に使用できる値は、単純型によって ST_TextColumnCount 定義されます。

適用対象