Scilab 5.3.1
- Scilab 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 2025.0.0. This page might be outdated.
See the recommended documentation of this function
datatipRemove
選択したdatatipを削除する
呼び出し手順e
datatipRemove(polyline_handle,ind) datatipRemove(datatip_handle)
パラメータ
- polyline_handle
tipを有するポリラインのハンドル
- datatip_handle
削除するtipのハンドル.
- ind
整数, tipのインデックス
説明
選択されたdatatipを削除します.
例
x=linspace(0,1,100)'; y=x.^3; clf() plot(x,y); e=gce();p=e.children(1);//ポリラインのハンドルを取得 t1=datatipCreate(p,50); datatipCreate(p,20); datatipRemove(p,2) datatipRemove(t1)
参照
- datatips — プロットされた曲線に情報(tips)を配置,編集するためのツール.
- datatipCreate — プログラムによりポリラインのデータ情報を作成する
作者
- Serge Steer, INRIA
<< datatipRedraw | Datatips | datatipRemoveAll >> |