Home > functions > common > utility > @file_dialog > get.m

get

PURPOSE ^

file_dialogクラスのgetメソッド

SYNOPSIS ^

function val = get(this, prop)

DESCRIPTION ^

 file_dialogクラスのgetメソッド
 get指定したオブジェクトのプロパティ値を返す。

 Copyright (C) 2011, ATR All Rights Reserved.
 License : New BSD License(see VBMEG_LICENSE.txt)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function val = get(this, prop)
0002 % file_dialogクラスのgetメソッド
0003 % get指定したオブジェクトのプロパティ値を返す。
0004 %
0005 % Copyright (C) 2011, ATR All Rights Reserved.
0006 % License : New BSD License(see VBMEG_LICENSE.txt)
0007 
0008 if isfield( this.public, lower(prop) )
0009   val = getfield(this.public, lower(prop));
0010 else
0011   error( sprintf('Invalid properties: ''%s''', prop) );
0012 end

Generated on Tue 27-Aug-2013 11:46:04 by m2html © 2005