Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
12 changes: 12 additions & 0 deletions content/java/chinese-traditional/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: Aspose.Slides for Java
type: docs
weight: 11
url: /zh-hant/
description: Aspose.Slides for Java API 參考包含範例、程式碼片段和 API 文件。它提供套件、類別、介面以及其他 API 詳細資訊。
is_root: true
---
## 套件
| 套件 | 說明 |
| --- | --- |
| [com.aspose.slides](./com.aspose.slides) | |
1,191 changes: 1,191 additions & 0 deletions content/java/chinese-traditional/com.aspose.slides/_index.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
---
title: AdjustValue
second_title: Aspose.Slides for Java API 參考
description: 表示幾何形狀的調整值。
type: docs
url: /zh-hant/com.aspose.slides/adjustvalue/
---
**繼承:**
java.lang.Object

**所有已實作的介面:**
[com.aspose.slides.IAdjustValue](../../com.aspose.slides/iadjustvalue)
```
public class AdjustValue implements IAdjustValue
```

表示幾何形狀的調整值。這些值會影響形狀的形式。

## 方法

| 方法 | 說明 |
| --- | --- |
| [getRawValue()](#getRawValue--) | 返回或設定調整值「原樣」。 |
| [setRawValue(long value)](#setRawValue-long-) | 返回或設定調整值「原樣」。 |
| [getAngleValue()](#getAngleValue--) | 返回或設定值,將其解讀為角度(以度為單位)。 |
| [setAngleValue(float value)](#setAngleValue-float-) | 返回或設定值,將其解讀為角度(以度為單位)。 |
| [getName()](#getName--) | 返回此調整值的名稱。 |
| [getType()](#getType--) | 返回形狀調整的類型。 |

### getRawValue() {#getRawValue--}
```
public final long getRawValue()
```

返回或設定調整值「原樣」。讀寫 long。

**返回值:**
long

### setRawValue(long value) {#setRawValue-long-}
```
public final void setRawValue(long value)
```

返回或設定調整值「原樣」。讀寫 long。

**參數:**
| 參數 | 類型 | 說明 |
| --- | --- | --- |
| value | long | |

### getAngleValue() {#getAngleValue--}
```
public final float getAngleValue()
```

返回或設定值,將其解讀為角度(以度為單位)。讀寫 float。

**返回值:**
float

### setAngleValue(float value) {#setAngleValue-float-}
```
public final void setAngleValue(float value)
```

返回或設定值,將其解讀為角度(以度為單位)。讀寫 float。

**參數:**
| 參數 | 類型 | 說明 |
| --- | --- | --- |
| value | float | |

### getName() {#getName--}
```
public final String getName()
```

返回此調整值的名稱。唯讀 String。

**返回值:**
java.lang.String

### getType() {#getType--}
```
public final int getType()
```

返回形狀調整的類型。唯讀 [ShapeAdjustmentType](../../com.aspose.slides/shapeadjustmenttype)。

**返回值:**
int
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
---
title: AdjustValueCollection
second_title: Aspose.Slides Java API 參考
description: 表示形狀調整的集合。
type: docs
url: /zh-hant/com.aspose.slides/adjustvaluecollection/
---
**繼承:**
java.lang.Object, com.aspose.slides.DomObject

**所有已實作的介面:**
[com.aspose.slides.IAdjustValueCollection](../../com.aspose.slides/iadjustvaluecollection)
```
public final class AdjustValueCollection extends DomObject<GeometryShape> implements IAdjustValueCollection
```

表示形狀調整的集合。
## 方法

| 方法 | 說明 |
| --- | --- |
| [size()](#size--) | 傳回調整項的數量。 |
| [get_Item(int index)](#get-Item-int-) | 傳回指定索引的調整項。 |
| [copyTo(System.Array array, int index)](#copyTo-com.aspose.ms.System.Array-int-) | 將集合中的所有元素複製到指定的陣列。 |
| [isSynchronized()](#isSynchronized--) | 傳回指示集合存取是否同步(執行緒安全)的值。 |
| [getSyncRoot()](#getSyncRoot--) | 傳回同步根。 |
| [iterator()](#iterator--) | 傳回整個集合的列舉器。 |

### size() {#size--}
```
public final int size()
```

傳回調整項的數量。唯讀 int。

**返回:**
int

### get_Item(int index) {#get-Item-int-}
```
public final IAdjustValue get_Item(int index)
```

傳回指定索引的調整項。

**參數:**
| 參數 | 類型 | 說明 |
| --- | --- | --- |
| index | int | 調整項的索引。 |

**返回:**
[IAdjustValue](../../com.aspose.slides/iadjustvalue) - [AdjustValue](../../com.aspose.slides/adjustvalue)。

### copyTo(System.Array array, int index) {#copyTo-com.aspose.ms.System.Array-int-}
```
public final void copyTo(System.Array array, int index)
```

將集合中的所有元素複製到指定的陣列。

**參數:**
| 參數 | 類型 | 說明 |
| --- | --- | --- |
| array | com.aspose.ms.System.Array | 目標陣列。 |
| index | int | 目標陣列中的起始索引。 |

### isSynchronized() {#isSynchronized--}
```
public final boolean isSynchronized()
```

傳回指示集合存取是否同步(執行緒安全)的值。唯讀 boolean。

**返回:**
boolean

### getSyncRoot() {#getSyncRoot--}
```
public final Object getSyncRoot()
```

傳回同步根。唯讀 Object。

**返回:**
java.lang.Object

### iterator() {#iterator--}
```
public final System.Collections.IEnumerator iterator()
```

傳回整個集合的列舉器。

**返回:**
com.aspose.ms.System.Collections.IEnumerator
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
title: AfterAnimationType
second_title: Aspose.Slides for Java API 參考
description: 表示動畫效果的後置動畫類型。
type: docs
url: /zh-hant/com.aspose.slides/afteranimationtype/
---
**繼承:**
java.lang.Object, com.aspose.ms.System.ValueType, com.aspose.ms.System.Enum
```
public final class AfterAnimationType extends System.Enum
```

表示動畫效果的後置動畫類型。

## 欄位

| 欄位 | 描述 |
| --- | --- |
| [DoNotDim](#DoNotDim) | 不要在動畫後變暗。 |
| [Color](#Color) | 動畫結束後的顏色。 |
| [HideAfterAnimation](#HideAfterAnimation) | 在動畫結束後隱藏類型。 |
| [HideOnNextMouseClick](#HideOnNextMouseClick) | 在下一次滑鼠點擊後隱藏類型。 |
### DoNotDim {#DoNotDim}
```
public static final int DoNotDim
```

不要在動畫後變暗。

### Color {#Color}
```
public static final int Color
```

動畫結束後的顏色。

### HideAfterAnimation {#HideAfterAnimation}
```
public static final int HideAfterAnimation
```

在動畫結束後隱藏。

### HideOnNextMouseClick {#HideOnNextMouseClick}
```
public static final int HideOnNextMouseClick
```

在下一次滑鼠點擊後隱藏。
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
---
title: AlphaBiLevel
second_title: Aspose.Slides for Java API 參考文件
description: 表示 Alpha 雙層效果。
type: docs
url: /zh-hant/com.aspose.slides/alphabilevel/
---
**繼承:**
java.lang.Object, [com.aspose.slides.PVIObject](../../com.aspose.slides/pviobject), [com.aspose.slides.ImageTransformOperation](../../com.aspose.slides/imagetransformoperation)

**所有已實作的介面:**
[com.aspose.slides.IAlphaBiLevel](../../com.aspose.slides/ialphabilevel), com.aspose.slides.IVisualEffect
```
public final class AlphaBiLevel extends ImageTransformOperation implements IAlphaBiLevel, IVisualEffect
```

表示 Alpha Bi-Level 效果。小於閾值的 Alpha(Opacity)值會變為 0(完全透明),而大於或等於閾值的 Alpha 值會變為 100%(完全不透明)。

## 方法

| 方法 | 說明 |
| --- | --- |
| [getThreshold()](#getThreshold--) | 傳回效果閾值。 |
| [setThreshold(float value)](#setThreshold-float-) | 傳回效果閾值。 |
| [getEffective()](#getEffective--) | 取得套用繼承後的有效 Alpha Bi-Level 效果資料。 |
| [equals(Object obj)](#equals-java.lang.Object-) | 判斷指定的 [AlphaBiLevel](../../com.aspose.slides/alphabilevel) 是否等於目前的 [AlphaBiLevel](../../com.aspose.slides/alphabilevel)。 |
| [hashCode()](#hashCode--) | 作為特定類型的雜湊函式。 |

### getThreshold() {#getThreshold--}
```
public final float getThreshold()
```


傳回效果閾值。可讀寫 float.

**傳回值:**
float

### setThreshold(float value) {#setThreshold-float-}
```
public final void setThreshold(float value)
```


傳回效果閾值。可讀寫 float.

**參數:**
| 參數 | 類型 | 說明 |
| --- | --- | --- |
| value | float | |

### getEffective() {#getEffective--}
```
public final IAlphaBiLevelEffectiveData getEffective()
```


取得套用繼承後的有效 Alpha Bi-Level 效果資料。

**傳回值:**
[IAlphaBiLevelEffectiveData](../../com.aspose.slides/ialphabileveleffectivedata) - 一個 [IAlphaBiLevelEffectiveData](../../com.aspose.slides/ialphabileveleffectivedata)。

### equals(Object obj) {#equals-java.lang.Object-}
```
public boolean equals(Object obj)
```


判斷指定的 [AlphaBiLevel](../../com.aspose.slides/alphabilevel) 是否等於目前的 [AlphaBiLevel](../../com.aspose.slides/alphabilevel)。

**參數:**
| 參數 | 類型 | 說明 |
| --- | --- | --- |
| obj | java.lang.Object | 要比較的 [AlphaBiLevel](../../com.aspose.slides/alphabilevel)。 |

**傳回值:**
boolean - 若物件相等則返回 true;否則返回 false。

### hashCode() {#hashCode--}
```
public int hashCode()
```


作為特定類型的雜湊函式。

**傳回值:**
int - 目前物件的雜湊碼。
Loading
Loading