共用方式為


VML TextPathOK 屬性

本主題描述 VML,這是在 Windows Internet Explorer 9 中已被取代的功能。 依賴 VML 的網頁和應用程式應該移轉至 SVG 或其他廣泛支援的標準。

注意

自 2011 年 12 月起,本主題已封存。 因此,它不再主動維護。 如需詳細資訊,請參閱 封存內容。 如需有關目前 Windows Internet Explorer 版本的資訊、建議和指引,請參閱 Internet Explorer 開發人員中心

 

判斷是否要顯示文字路徑。 讀取/寫入 VgTriState

適用於

路徑

標籤語法

<v: 元素 textpathok=「 運算式 」>

指令碼語法

專案 。 textpathok= 「expression

表達=元素。 textpathok

備註

如果 為 False,則路徑不能有文字路徑。 預設值為 False。 您必須將此屬性設定為 True ,才能在路徑上顯示文字。

VML 標準屬性

範例

圖形具有文字路徑。 文字 「Hello VML」 會沿著笑臉形狀曲線顯示。

   <v:curve id="tc" style="position:relative"
   from="50px 100px" to="400px 100px"
   control1="200px 200px" control2="300px 200px">
   <v:stroke weight="1pt" color="blue"
   filltype="solid"/>
   <v:fill on="True" color="yellow" color2="green" type="gradient"/>
   <v:path textpathok="True"/>
   <v:textpath on="True" id="mytp"
   style="font:normal normal normal 36pt Arial"
   fitpath="True" string="Hello VML"/>
   </v:curve>