Search Results for

    Show / Hide Table of Contents

    Class RangeRow

    A class that represents a single row of cells.

    Inheritance
    System.Object
    Range
    RangeRow
    Implements
    System.Collections.Generic.IEnumerable<Cell>
    System.Collections.IEnumerable
    Inherited Members
    Range.GetEnumerator()
    Range.IEnumerable.GetEnumerator()
    Range.Sum()
    Range.Max()
    Range.Min()
    Range.Avg()
    Range.SortAscending()
    Range.SortDescending()
    Range.Trim()
    Range.ToDataTable(Boolean)
    Range.SetCellValue(Int32, Int32, Object)
    Range.GetValue<TType>()
    Range.TryGetValue<TType>(TType)
    Range.ToString()
    Range.ClearContents()
    Range.Copy(WorkSheet, String)
    Range.Replace(String, String)
    Range.SaveAsNamedTable(String, Boolean, TableStyle)
    Range.SaveAsNamedRange(String, Boolean)
    Range.GetAllRows()
    Range.GetAllColumns()
    Range.Row(Int32)
    Range.Column(Int32)
    Range.RangeAddressAsString
    Range.IsEmpty
    Range.Value
    Range.FormatString
    Range.Formula
    Range.Rows
    Range.Columns
    Range.Style
    Range.WorkBook
    Range.DateTimeValue
    Range.StringValue
    Range.BoolValue
    Range.IntValue
    Range.DoubleValue
    Range.DecimalValue
    Range.FloatValue
    Range.Int64Value
    Range.LongValue
    Range.Int32Value
    Namespace: IronXL
    Assembly: IronXL.dll
    Syntax
    public class RangeRow : Range, IEnumerable<Cell>, IEnumerable

    Properties

    Height

    Gets or sets the height of the row.

    Declaration
    public int Height { get; set; }
    Property Value
    Type Description
    System.Int32

    Hidden

    Gets or sets a value indicating whether this row is hidden.

    Declaration
    public bool Hidden { get; set; }
    Property Value
    Type Description
    System.Boolean

    RangeAddress

    Address of the row.

    Declaration
    public RangeAddress RangeAddress { get; }
    Property Value
    Type Description
    RangeAddress

    Methods

    AddRange(Range)

    Add range to the current row if they can be combined.

    Declaration
    public override Range AddRange(Range range)
    Parameters
    Type Name Description
    Range range

    The range to add to the current working range.

    Returns
    Type Description
    Range

    This Range allowing a fluent coding style.

    Overrides
    Range.AddRange(Range)
    Exceptions
    Type Condition
    System.InvalidOperationException

    This range cannot be added to the current row because they are not on the same line or cannot be combined in one row

    RemoveRow()

    Removes this Row from the current WorkSheet;

    Declaration
    public void RemoveRow()

    SubtractRange(Range)

    Subtract range from the current row if it can be subtracted

    Declaration
    public override Range SubtractRange(Range range)
    Parameters
    Type Name Description
    Range range

    The range to remove from the current working range.

    Returns
    Type Description
    Range

    This Range allowing a fluent coding style.

    Overrides
    Range.SubtractRange(Range)
    Exceptions
    Type Condition
    System.InvalidOperationException

    This range cannot be subtracted from the current row because result row isn't continuous

    Implements

    System.Collections.Generic.IEnumerable<T>
    System.Collections.IEnumerable
    ☀
    ☾
    In This Article
    Back to top
    Install with Nuget