WPF

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Struct Int32Span

    Show / Hide Table of Contents

    Struct Int32Span

    Holds a start and end value with integer precision.

    Inherited Members
    System.ValueType.Equals(System.Object)
    System.ValueType.GetHashCode()
    System.ValueType.ToString()
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetType()
    Namespace: Syncfusion.UI.Xaml.Utility
    Assembly: Syncfusion.SfGrid.WPF.dll
    Syntax
    public struct Int32Span

    Constructors

    Int32Span(Int32, Int32)

    Initializes a new instance of the Int32Span struct.

    Declaration
    public Int32Span(int start, int end)
    Parameters
    Type Name Description
    System.Int32 start

    The start.

    System.Int32 end

    The end.

    Properties

    Count

    Gets or sets the count (equals end - start + 1)

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

    The count.

    End

    Gets or sets the end.

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

    The end.

    Start

    Gets or sets the start.

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

    The start.

    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved