LayeredSectionWorksheet#

class ansys.mechanical.stubs.v242.Ansys.ACT.Automation.Mechanical.LayeredSectionWorksheet#

Bases: object

LayeredSectionWorksheet class.

Overview#

AddThicknessLayer

Add a row to the LayeredSectionWorksheet

InsertThicknessLayerAbove

Insert a new layer to the LayeredSectionWorksheet

InsertThicknessLayerBelow

Insert a new layer to the LayeredSectionWorksheet

DeleteRow

Delete a row from the LayeredSectionWorksheet

SetThickness

Set the thickness for the LayeredSection at the row index specifiied.

SetAngle

Set the angle for the LayeredSection at the row index specifiied.

SetMaterial

Set the material for the LayeredSection at the row index specifiied.

GetThickness

Gets the thickness for the LayeredSection at the row index specifiied.

GetAngle

Gets the angle for the LayeredSection at the row index specifiied.

GetMaterial

Gets the material for the LayeredSection at the row index specifiied.

RowCount

Gets the number of entries (rows) in the worksheet.

Property detail#

property LayeredSectionWorksheet.RowCount: System.Int32 | None

Gets the number of entries (rows) in the worksheet.

Method detail#

LayeredSectionWorksheet.AddThicknessLayer(materialname: System.String, thickness: System.Double, angle: System.Double) System.Int32
Add a row to the LayeredSectionWorksheet
New layers are added as the top most layer in the Z direction.
LayeredSectionWorksheet indices are zero based and ordered in the Z direction.
LayeredSectionWorksheet.InsertThicknessLayerAbove(materialname: System.String, thickness: System.Double, angle: System.Double, index: System.Int32) System.Int32
Insert a new layer to the LayeredSectionWorksheet
The new layer will be inserted above the layer indicated by the given index.
LayeredSectionWorksheet indices are zero based and ordered in the Z direction.
LayeredSectionWorksheet.InsertThicknessLayerBelow(materialname: System.String, thickness: System.Double, angle: System.Double, index: System.Int32) System.Int32
Insert a new layer to the LayeredSectionWorksheet
The new layer will be inserted below the layer indicated by the given index.
LayeredSectionWorksheet indices are zero based and ordered in the Z direction.
LayeredSectionWorksheet.DeleteRow(index: System.Int32) System.Void
Delete a row from the LayeredSectionWorksheet
LayeredSectionWorksheet indices are zero based and ordered in the Z direction.
LayeredSectionWorksheet.SetThickness(index: System.Int32, thickness: System.Double) System.Void
Set the thickness for the LayeredSection at the row index specifiied.
LayeredSectionWorksheet indices are zero based and ordered in the Z direction.
LayeredSectionWorksheet.SetAngle(index: System.Int32, angle: System.Double) System.Void
Set the angle for the LayeredSection at the row index specifiied.
LayeredSectionWorksheet indices are zero based and ordered in the Z direction.
LayeredSectionWorksheet.SetMaterial(index: System.Int32, materialname: System.String) System.Void
Set the material for the LayeredSection at the row index specifiied.
LayeredSectionWorksheet indices are zero based and ordered in the Z direction.
LayeredSectionWorksheet.GetThickness(index: System.Int32) System.Double
Gets the thickness for the LayeredSection at the row index specifiied.
LayeredSectionWorksheet indices are zero based and ordered in the Z direction.
LayeredSectionWorksheet.GetAngle(index: System.Int32) System.Double
Gets the angle for the LayeredSection at the row index specifiied.
LayeredSectionWorksheet indices are zero based and ordered in the Z direction.
LayeredSectionWorksheet.GetMaterial(index: System.Int32) System.String
Gets the material for the LayeredSection at the row index specifiied.
LayeredSectionWorksheet indices are zero based and ordered in the Z direction.