ColumnCollectionInsertClone Method |
Creates a copy of the specified template column and insert it at the specified position in a table.
Namespace:
Aspose.Slides
Assembly:
Aspose.Slides (in Aspose.Slides.dll) Version: 20.3.0.0 (20.3)
Syntaxpublic IColumn[] InsertClone(
int index,
IColumn templ,
bool withAttachedColumns
)
Public Function InsertClone (
index As Integer,
templ As IColumn,
withAttachedColumns As Boolean
) As IColumn()
public:
virtual array<IColumn^>^ InsertClone(
int index,
IColumn^ templ,
bool withAttachedColumns
) sealed
abstract InsertClone :
index : int *
templ : IColumn *
withAttachedColumns : bool -> IColumn[]
override InsertClone :
index : int *
templ : IColumn *
withAttachedColumns : bool -> IColumn[]
Parameters
- index
- Type: SystemInt32
Index of a new column. - templ
- Type: Aspose.SlidesIColumn
Column which is used as a template. - withAttachedColumns
- Type: SystemBoolean
True to copy also all columns attached to the template column.
Return Value
Type:
IColumnInserted columns.
Implements
IColumnCollectionInsertClone(Int32, IColumn, Boolean)
See Also