XDeleteProperty(display, w, property)
Display *display;
Window w;
Atom property;
display | Specifies the connection to the X server. Xサーバへの接続を指定。 |
w | Specifies the window whose property you want to delete. プロパティリストの取得を行うウィンドウを指定。 |
property | Specifies the property name. プロパティ名を指定。 |
XDeleteProperty()
can generate
BadAtom
and
BadWindow
errors.
XDeleteProperty()
はエラー
BadAtom,
BadWindow
を起こすことがある。
BadAtom | A value for an Atom argument does not name a
defined Atom. |
BadWindow | A value for a Window argument does not name a defined Window. |