Forums     Knowledge Base     OfficeWriter Online     
 
This documentation is for
OfficeWriter v3.0.4
.NET Platform

View Docs for Another
Version or Platform

Programmer's Reference > ExcelApplication API > ColumnProperties > OutlineLevel

OutlineLevel Property


C# Signature:

VB.NET Signature:


Description:

Sets or returns the outline level of the column, as a value between 0 and 7. The outline level is used to control grouping in Excel. For example, to group several columns, set their outline levels to 1; to group a subset of columns within the group, set their outline levels to 2.

OutlineLevel is a read / write property.



Examples:

[csharp]
int groupLevel = colProps.OutlineLevel;
[csharp]
colProps.OutlineLevel = 4;
[vbnet]
Dim groupLevel As Integer = colProps.OutlineLevel
[vbnet]
colProps.OutlineLevel = 4


Getter

Signature:

public int OutlineLevel

Returns:

int A value between 0 and 7 that represents the column's outline level.

Setter

Signature:

public void OutlineLevel int level

Type:

int



Copyright 2005 © SoftArtisans, Inc. All Rights Reserved.