Skip to content

DTL.Range.RectBaseWithValue.GetValue

sitRyo edited this page Jan 15, 2020 · 1 revision
// (1)
BasicRect GetValue(ref uint value)

概要

描画立幅Hを取得する

戻り値

(1) 引数にdrawValueを代入して, 戻り値として自分自身の参照値を返す。

例外

投げない

Example

Border border = new Border(5);
var matrix = new int[10, 10];
int value = 0;
border.GetValue(ref value).Draw(matrix);
Debug.Log(value);

Output

5
Clone this wiki locally