FitText.Id 属性

定义

拟合文本运行 ID

表示架构中的以下属性:w:id

[DocumentFormat.OpenXml.SchemaAttr(23, "id")]
public DocumentFormat.OpenXml.Int32Value Id { get; set; }
public DocumentFormat.OpenXml.Int32Value Id { get; set; }
[DocumentFormat.OpenXml.SchemaAttr(23, "id")]
public DocumentFormat.OpenXml.Int32Value? Id { get; set; }
[DocumentFormat.OpenXml.SchemaAttr("w:id")]
public DocumentFormat.OpenXml.Int32Value? Id { get; set; }
public DocumentFormat.OpenXml.Int32Value? Id { get; set; }
member this.Id : DocumentFormat.OpenXml.Int32Value with get, set
[<DocumentFormat.OpenXml.SchemaAttr(23, "id")>]
member this.Id : DocumentFormat.OpenXml.Int32Value with get, set
[<DocumentFormat.OpenXml.SchemaAttr("w:id")>]
member this.Id : DocumentFormat.OpenXml.Int32Value with get, set
Public Property Id As Int32Value

属性值

返回 Int32Value

属性

注解

使用此类时,ECMA 国际标准 ECMA-376 中的以下信息可能很有用。

指定唯一 ID,该 ID 应用于将包含 fitText 元素的多个连续运行相互链接,以确保其内容正确合并到文档中的指定宽度。

这意味着,由于格式差异而分离的多个运行可以标识为在属性方面 fitText 属于同一分组,尽管它们是 WordprocessingML 中的多个文本运行。

如果运行不连续,则忽略 属性 id ,并且不链接运行。

如果省略此属性,则此运行没有 ID,并且不应与父段落中的其他任何运行链接。

请考虑文档中的以下三个运行,在显示时应正好适合一英寸:

<w:r>  
  <w:rPr>  
    <w:fitText w:id="99" w:val="1440" />   
  </w:rPr>  
  <w:t>fit this into</w:t>   
</w:r>  
<w:r>  
  <w:rPr>  
    <w:b/>   
    <w:fitText w:id="99" w:val="1440" />   
   </w:rPr>  
  <w:t>one</w:t>   
</w:r>  
<w:r>  
  <w:rPr>  
    <w:fitText w:id="99" w:val="1440" />   
   </w:rPr>  
  <w:t>inch</w:t>   
</w:r>  

虽然有三个内容运行,但所有三个区域应合并为单个拟合文本区域 (例如,它们都适合一英寸,而不是每个) 基于属性中 id 用于所有三个运行的相同值。

此属性的可能值由 ST_DecimalNumber 简单类型定义。

适用于