[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ILineFormat.Type

Type Property

Type

Returns the fill type of the line.

Use this property to determine whether the line is currently configured with a solid, patterned, or gradient fill.

Declaration
FillType Type { get; }
ReadOnly Property Type As FillType
Examples
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
line.Patterned(PatternType.Percent10);
FillType type = line.Type;