GridCellRange クラス リファレンス

継承元 NSObject
定義先 GridCellRange.h

概要

GridCellRange クラス

– init

- (id _Nonnull)init

– initWithRow:col:

- (id _Nonnull)initWithRow:(int)row col:(int)col

– initWithRow:col:row2:col2:

- (id _Nonnull)initWithRow:(int)row col:(int)col row2:(int)row2 col2:(int)col2

– clone

- (GridCellRange *_Nonnull)clone

– isEqual:

- (BOOL)isEqual:(GridCellRange *_Nonnull)other

– intersects:

- (BOOL)intersects:(GridCellRange *_Nonnull)other

  row

この範囲内の最初の行のインデックスを取得または設定します。

@property int row

内容

この範囲内の最初の行のインデックスを取得または設定します。

定義先

GridCellRange.h

  col

この範囲内の最初の列のインデックスを取得または設定します。

@property int col

内容

この範囲内の最初の列のインデックスを取得または設定します。

定義先

GridCellRange.h

  row2

この範囲内の最後の行のインデックスを取得または設定します。

@property int row2

内容

この範囲内の最後の行のインデックスを取得または設定します。

定義先

GridCellRange.h

  col2

この範囲内の最後の列のインデックスを取得または設定します。

@property int col2

内容

この範囲内の最後の列のインデックスを取得または設定します。

定義先

GridCellRange.h

  rowSpan

この範囲内の行数を取得します。

@property (readonly) int rowSpan

内容

この範囲内の行数を取得します。

定義先

GridCellRange.h

  columnSpan

この範囲内の列数を取得します。

@property (readonly) int columnSpan

内容

この範囲内の列数を取得します。

定義先

GridCellRange.h

  topRow

この範囲内の上端の行のインデックスを取得します。

@property (readonly) int topRow

内容

この範囲内の上端の行のインデックスを取得します。

定義先

GridCellRange.h

  bottomRow

この範囲内の下端の行のインデックスを取得します。

@property (readonly) int bottomRow

内容

この範囲内の下端の行のインデックスを取得します。

定義先

GridCellRange.h

  leftCol

この範囲内の左端の列のインデックスを取得します。

@property (readonly) int leftCol

内容

この範囲内の左端の列のインデックスを取得します。

定義先

GridCellRange.h

  rightCol

この範囲内の右端の列のインデックスを取得します。

@property (readonly) int rightCol

内容

この範囲内の右端の列のインデックスを取得します。

定義先

GridCellRange.h

  isValid

この範囲に有効な行インデックスと列インデックス(> -1)が含まれるかどうかをチェックします。

@property (readonly) BOOL isValid

内容

この範囲に有効な行インデックスと列インデックス(> -1)が含まれるかどうかをチェックします。

定義先

GridCellRange.h

  isSingleCell

この範囲が単一のセルかどうかをチェックします(row == row2 && col == col2)。

@property (readonly) BOOL isSingleCell

内容

この範囲が単一のセルかどうかをチェックします(row == row2 && col == col2)。

定義先

GridCellRange.h

– getRenderSize:

- (CGSize)getRenderSize:(GridPanel *_Nonnull)panel

– containsRow:

指定された行が含まれているかどうかを判定します。

- (BOOL)containsRow:(int)r

パラメータ

r

戻り値

boolean 値

内容

指定された行が含まれているかどうかを判定します。

定義先

GridCellRange.h

– containsColumn:

指定された列が含まれているかどうかを判定します。

- (BOOL)containsColumn:(int)c

パラメータ

c

戻り値

boolean 値

内容

指定された列が含まれているかどうかを判定します。

定義先

GridCellRange.h

– contains:

- (BOOL)contains:(GridCellRange *_Nonnull)other