Scilab 5.3.0
- Scilab Online Help
- Graphics Library
- Datatips
- datatipCreate
- datatipGetEntities
- datatipGetStruct
- datatipInitStruct
- datatipsRemoveAll
- datatipManagerMode
- datatipMove
- datatipRedraw
- datatipRemove
- datatipRemoveAll
- datatipSetDisplay
- datatipSetInterp
- datatipSetOrientation
- datatipSetStruct
- datatipToggle
- datatips
- orthProj
Please note that the recommended version of Scilab is 5.3.3. This page might be outdated.
See the recommended documentation of this function
datatipGetStruct
曲線または曲面エンティティからdatatipsデータ構造を展開する.
呼び出し手順
datatips_struct=datatipGetStruct(curve_handle)
パラメータs
- curve_handle
曲線または曲面のハンドル.
- datatips_struct
datatips型のリスト.
説明
datatipGetStruct は,
曲線または曲面エンティティからdatatipsデータ構造体を展開します.
tipの表示をカスタマイズするために
datatipsデータ構造体のプロパティを取得する際にコールすることができます.
例
x=linspace(0,1,100)'; y=x.^3; clf() plot(x,y); e=gce();p=e.children(1);//ポリラインのハンドルを取得 datatipCreate(p,50); datatipCreate(p,20); datatips_struct=datatipGetStruct(p) datatips_struct.formatfunction
作者
- Serge Steer, INRIA
| << datatipGetEntities | Datatips | datatipInitStruct >> |