Main Content

mlreportgen.ppt.VAlign Class

Namespace: mlreportgen.ppt

Vertical alignment of table entry content

Description

Vertical alignment of table entry content.

The mlreportgen.ppt.VAlign class is a handle class.

Creation

Description

vAlignObj = VAlign creates a vertical alignment object having the value "top".

vAlignObj = VAlign(value) creates a vertical alignment object having the specified value.

example

Input Arguments

expand all

Vertical alignment for table entry content, specified as one of these values:

ValueDescription

"top"

Vertically aligned to the top

"bottom"

Vertically aligned to the bottom of the table entry

"middle"

Vertically aligned to the middle of the table entry

"topCentered"

Vertically aligned to the top and horizontally aligned to the center of the table entry

"bottomCentered"

Vertically aligned to the bottom and horizontally aligned to the center of the table entry

"middleCentered"

Vertically aligned to the middle and horizontally aligned to the center of the table entry

Properties

expand all

Vertical alignment of table entry content, specified as a character vector or string scalar.

ValueDescription

"top"

Vertically aligned to the top

"bottom"

Vertically aligned to the bottom of the table entry

"middle"

Vertically aligned to the middle of the table entry

"topCentered"

Vertically aligned to the top and horizontally aligned to the center of the table entry

"bottomCentered"

Vertically aligned to the bottom and horizontally aligned to the center of the table entry

"middleCentered"

Vertically aligned to the middle and horizontally aligned to the center of the table entry

Attributes:

GetAccess
public
SetAccess
public
NonCopyable
true

Data Types: char | string

Tag, specified as a character vector or string scalar. The PPT API generates a session-unique tag as part of the creation of this object. The generated tag has the form CLASS:ID, where CLASS is the object class and ID is the value of the Id property of the object. Use this value to help identify where an issue occurs during document generation.

Attributes:

GetAccess
public
SetAccess
public
NonCopyable
true

Data Types: char | string

Object identifier, specified as a character vector or string scalar. The PPT API generates a session-unique identifier when it creates the document element object. You can specify your own value for Id.

Attributes:

GetAccess
public
SetAccess
public
NonCopyable
true

Data Types: char | string

Examples

collapse all

Create a presentation.

import mlreportgen.ppt.*

ppt = Presentation("myVAlign.pptx");
open(ppt);
slide1 = add(ppt,"Title and Content");

Create a table using a cell array. Set the vertical alignment for each entry.

table1 = Table();
row1 = TableRow();
p1 = Paragraph("top");
r1e1 = TableEntry();
r1e1.Style = {VAlign("top"),FontSize(".5in")};
append(r1e1,p1);
append(row1,r1e1);

p2 = Paragraph("middle");
r1e2 = TableEntry();
r1e2.Style = {VAlign("middle")};
append(r1e2,p2);
append(row1,r1e2);

row2 = TableRow();
p3 = Paragraph("bottom");
r2e1 = TableEntry();
r2e1.Style = {VAlign("bottom")};
append(r2e1,p3);
append(row2,r2e1);

p4 = Paragraph("middle centered");
r2e2 = TableEntry();
r2e2.Style = {VAlign("middleCentered"),FontSize(".5in")};
append(r2e2,p4);
append(row2,r2e2);

append(table1,row1);
append(table1,row2);

Add the table to the slide, generate the presentation, and open the myVAlign presentation.

replace(slide1,"Content",table1);
close(ppt);
rptview(ppt);

Sample presentation slide with a 2x2 table. The top left cell displays as left aligned, and the bottom right cell is middle centered, each in a font of 0.5 inches. The bottom left cell is bottom aligned, and the top right cell is middle aligned, displaying in a smaller font.

Version History

Introduced in R2015b