XDeleteProperty

Syntax

XDeleteProperty(display, w, property)
      Display *display;
      Window w;
      Atom property;

Arguments

display Specifies the connection to the X server.
Xサーバへの接続を指定。
w Specifies the window whose property you want to delete.
プロパティリストの取得を行うウィンドウを指定。
property Specifies the property name.
プロパティ名を指定。

Description

The XDeleteProperty() function deletes the specified property only if the property was defined on the specified window and causes the X server to generate a PropertyNotify event on the window unless the property does not exist.
関数 XDeleteProperty() は指定したプロパティが指定したウィンドウに対して定義されている 場合に限ってこのプロパティを削除し、 そのウィンドウ上での PropertyNotify イベントを X サーバに生成させる。

XDeleteProperty() can generate BadAtom and BadWindow errors.
XDeleteProperty() はエラー BadAtom, BadWindow を起こすことがある。

Diagnostics

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.

See also

XChangeProperty(), XGetWindowProperty(), XListProperties(), XRotateWindowProperties(), "Obtaining and Changing Window Properties"
Christophe Tronche, ch.tronche@computer.org