GetImageSize() public method

public GetImageSize ( int &width, int &height ) : void
width int
height int
return void
コード例 #1
0
ファイル: ListItem.cs プロジェクト: ABEMBARKA/monoUI
 public void GetImageSize(out int width, out int height)
 {
     imageExpert.GetImageSize(out width, out height);
 }
コード例 #2
0
ファイル: Button.cs プロジェクト: ABEMBARKA/monoUI
 public void GetImageSize(out int width, out int height)
 {
     imageImplementor.GetImageSize(out width, out height);
 }