Text Properties(文本屬性)組可以獲取或檢查 After Effects 中文本樣式的設置,包括字體,、大小,、顏色、描邊,、字間距等屬性,。返回值:Boolean,,true 表示啟用了全部大寫字母,,false 表示禁用。// 示例: text.sourceText.style.isAllCaps; 返回值:Boolean,,true 表示啟用了填充,false 表示禁用,。// 示例: text.sourceText.style.applyFill; 返回值:Boolean,true 表示啟用了描邊,,false 表示禁用,。// 示例: text.sourceText.style.applyStroke; 返回值:Boolean,,true 表示啟用了“自動”行距,,false 表示使用設置好的行距,。// 示例: text.sourceText.style.autoLeading; 返回值:String,,表示基線方向的字符串,,可能是"default"(默認)、"rotated"(旋轉(zhuǎn)),、"tate-chuu-yoko"(豎中橫)之一,。// 示例: text.sourceText.style.baselineDirection; 返回值:String,,表示基線選項的字符串,,可能是"default"(默認)、"subscript"(下標),、"superscript"(上標)之一。// 示例: text.sourceText.style.baselineOption; 返回值:Number,,基線偏移的值,以像素為單位,。// 示例: text.sourceText.style.baselineShift; 返回值:String,可能是"default"(默認),、"hindidigits"(印地語數(shù)字集)之一,。// 示例: text.sourceText.style.digitSet; 返回值:Boolean,,true 表示啟用了仿粗體,,false 表示禁用。// 示例: text.sourceText.style.isFauxBold; 返回值:Boolean,,true 表示啟用了仿斜體,false 表示禁用,。// 示例: text.sourceText.style.isFauxItalic; 返回值:Array,RGB 數(shù)組,,表示顏色的紅,、綠、藍分量(范圍 0 到 1),。// 示例: text.sourceText.style.fillColor[0]+"\r"+style.fillColor[1]+"\r"+style.fillColor[2] 返回值:String,PostScript 英文字體名稱,。// 示例: text.sourceText.style.font; 返回值:Number,字體大小的值,以像素為單位,。// 示例: text.sourceText.style.fontSize; 返回值:Number,以百分比表示的水平縮放比例,。// 示例: text.sourceText.style.horizontalScaling; 返回值:Number,字偶間距的值,,以像素為單位,。// 示例: text.sourceText.style.leading; 返回值:String,,可能是"metrics"(度量標準),、"optical"(視覺)之一。// 示例: text.sourceText.style.kerningType; 返回值:Number,,行距的值,以像素為單位,。// 示例:text.sourceText.style.leading; 返回值:Boolean,true 表示啟用了連字,,false 表示禁用,。// 示例: text.sourceText.style.isLigature; 返回值:String,,可能是Miter(尖角),、Round(圓角)、Bevel(斜角)之一,。// 示例: text.sourceText.style.lineJoin; 返回值:Boolean,true 表示啟用了小型大寫字母,,false 表示禁用,。// 示例: text.sourceText.style.isSmallCaps; 返回值:Array,,RGB 數(shù)組,,表示顏色的紅、綠,、藍分量(范圍 0 到 1),。// 示例: text.sourceText.style.strokeColor; 返回值:Number,,描邊寬度的值,,以像素為單位,。// 示例: text.sourceText.style.strokeWidth; 返回值:Number,,字符間距的值,,以像素為單位。// 示例: text.sourceText.style.tracking; 返回值:Number,,以百分比表示的比例間距的值。// 示例: text.sourceText.style.tsume; 返回值:Number,,以百分比表示的垂直縮放比例。// 示例: text.sourceText.style.verticalScaling;
|