Skip to content

Commit 4c0dc09

Browse files
committed
Aspose.Slides for Java 25.9 API references
1 parent 2a01fae commit 4c0dc09

File tree

4 files changed

+92
-4
lines changed

4 files changed

+92
-4
lines changed

content/java/english/com.aspose.slides/charttitle/_index.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ Represents chart title properties.
3535
| [addTextFrameForOverriding(String text)](#addTextFrameForOverriding-java.lang.String-) | Initialize TextFrameForOverriding with the text in paramener "text". |
3636
| [getTextFrameForOverriding()](#getTextFrameForOverriding--) | Can contain a rich formatted text. |
3737
| [getTextFormat()](#getTextFormat--) | Returns text format. |
38+
| [getActualX()](#getActualX--) | Specifies actual x location (left) of the chart element relative to the left top corner of the chart. |
39+
| [getActualY()](#getActualY--) | Specifies actual top of the chart element relative to the left top corner of the chart. |
40+
| [getActualWidth()](#getActualWidth--) | Specifies actual width of the chart element. |
41+
| [getActualHeight()](#getActualHeight--) | Specifies actual height of the chart element. |
3842
| [getParent_Immediate()](#getParent-Immediate--) | |
3943
| [getChart()](#getChart--) | Returns the parent chart. |
4044
| [getSlide()](#getSlide--) | Returns the parent slide of a FillFormat. |
@@ -219,6 +223,46 @@ Returns text format. Read-only [IChartTextFormat](../../com.aspose.slides/ichart
219223

220224
**Returns:**
221225
[IChartTextFormat](../../com.aspose.slides/icharttextformat)
226+
### getActualX() {#getActualX--}
227+
```
228+
public final float getActualX()
229+
```
230+
231+
232+
Specifies actual x location (left) of the chart element relative to the left top corner of the chart. Call method IChart.ValidateChartLayout() before to get actual values. Read float.
233+
234+
**Returns:**
235+
float
236+
### getActualY() {#getActualY--}
237+
```
238+
public final float getActualY()
239+
```
240+
241+
242+
Specifies actual top of the chart element relative to the left top corner of the chart. Call method IChart.ValidateChartLayout() before to get actual values. Read float.
243+
244+
**Returns:**
245+
float
246+
### getActualWidth() {#getActualWidth--}
247+
```
248+
public final float getActualWidth()
249+
```
250+
251+
252+
Specifies actual width of the chart element. Call method IChart.ValidateChartLayout() before to get actual values. Read float.
253+
254+
**Returns:**
255+
float
256+
### getActualHeight() {#getActualHeight--}
257+
```
258+
public final float getActualHeight()
259+
```
260+
261+
262+
Specifies actual height of the chart element. Call method IChart.ValidateChartLayout() before to get actual values. Read float.
263+
264+
**Returns:**
265+
float
222266
### getParent_Immediate() {#getParent-Immediate--}
223267
```
224268
public final IDOMObject getParent_Immediate()

content/java/english/com.aspose.slides/icharttitle/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ type: docs
66
url: /com.aspose.slides/icharttitle/
77
---
88
**All Implemented Interfaces:**
9-
[com.aspose.slides.ILayoutable](../../com.aspose.slides/ilayoutable), [com.aspose.slides.IOverridableText](../../com.aspose.slides/ioverridabletext)
9+
[com.aspose.slides.ILayoutable](../../com.aspose.slides/ilayoutable), [com.aspose.slides.IOverridableText](../../com.aspose.slides/ioverridabletext), [com.aspose.slides.IActualLayout](../../com.aspose.slides/iactuallayout)
1010
```
11-
public interface IChartTitle extends ILayoutable, IOverridableText
11+
public interface IChartTitle extends ILayoutable, IOverridableText, IActualLayout
1212
```
1313

1414
Represents chart title properties.

content/java/english/com.aspose.slides/ilegend/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ type: docs
66
url: /com.aspose.slides/ilegend/
77
---
88
**All Implemented Interfaces:**
9-
[com.aspose.slides.ILayoutable](../../com.aspose.slides/ilayoutable), [com.aspose.slides.IFormattedTextContainer](../../com.aspose.slides/iformattedtextcontainer)
9+
[com.aspose.slides.ILayoutable](../../com.aspose.slides/ilayoutable), [com.aspose.slides.IFormattedTextContainer](../../com.aspose.slides/iformattedtextcontainer), [com.aspose.slides.IActualLayout](../../com.aspose.slides/iactuallayout)
1010
```
11-
public interface ILegend extends ILayoutable, IFormattedTextContainer
11+
public interface ILegend extends ILayoutable, IFormattedTextContainer, IActualLayout
1212
```
1313

1414
Represents chart's legend properties.

content/java/english/com.aspose.slides/legend/_index.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ Represents chart's legend properties.
3737
| [getFormat()](#getFormat--) | Returns the format of a legend. |
3838
| [getChart()](#getChart--) | Returns the chart. |
3939
| [getEntries()](#getEntries--) | Gets legend entries. |
40+
| [getActualX()](#getActualX--) | Specifies actual x location (left) of the chart element relative to the left top corner of the chart. |
41+
| [getActualY()](#getActualY--) | Specifies actual top of the chart element relative to the left top corner of the chart. |
42+
| [getActualWidth()](#getActualWidth--) | Specifies actual width of the chart element. |
43+
| [getActualHeight()](#getActualHeight--) | Specifies actual height of the chart element. |
4044
| [getSlide()](#getSlide--) | Returns the parent slide of a FillFormat. |
4145
| [getPresentation()](#getPresentation--) | Returns the parent presentation of a FillFormat. |
4246
### getX() {#getX--}
@@ -237,6 +241,46 @@ Gets legend entries. Read-only [ILegendEntryCollection](../../com.aspose.slides/
237241

238242
**Returns:**
239243
[ILegendEntryCollection](../../com.aspose.slides/ilegendentrycollection)
244+
### getActualX() {#getActualX--}
245+
```
246+
public final float getActualX()
247+
```
248+
249+
250+
Specifies actual x location (left) of the chart element relative to the left top corner of the chart. Call method IChart.ValidateChartLayout() before to get actual values. Read float.
251+
252+
**Returns:**
253+
float
254+
### getActualY() {#getActualY--}
255+
```
256+
public final float getActualY()
257+
```
258+
259+
260+
Specifies actual top of the chart element relative to the left top corner of the chart. Call method IChart.ValidateChartLayout() before to get actual values. Read float.
261+
262+
**Returns:**
263+
float
264+
### getActualWidth() {#getActualWidth--}
265+
```
266+
public final float getActualWidth()
267+
```
268+
269+
270+
Specifies actual width of the chart element. Call method IChart.ValidateChartLayout() before to get actual values. Read float.
271+
272+
**Returns:**
273+
float
274+
### getActualHeight() {#getActualHeight--}
275+
```
276+
public final float getActualHeight()
277+
```
278+
279+
280+
Specifies actual height of the chart element. Call method IChart.ValidateChartLayout() before to get actual values. Read float.
281+
282+
**Returns:**
283+
float
240284
### getSlide() {#getSlide--}
241285
```
242286
public final IBaseSlide getSlide()

0 commit comments

Comments
 (0)