SourceGrid.Range.IsEmpty C# (CSharp) Method

IsEmpty() public method

Determines if the current range is empty
public IsEmpty ( ) : bool
return bool
        public bool IsEmpty()
        {
            return (Start.IsEmpty() || End.IsEmpty());
        }

Usage Example

Beispiel #1
0
 public RangeRegion(Range pRange)
 {
     if (pRange.IsEmpty() == false)
     {
         m_RangeCollection.Add(pRange);
     }
 }
All Usage Examples Of SourceGrid.Range::IsEmpty