pageIcon - ページアイコン

ページにアイコンを生成します。

カテゴリ

basics

構文

pageIcon="pathname"

使用法

設計モードで、[プロパティ] の下のトップタブをクリックし、[ページアイコン] を探すか、[すべてのプロパティ] をクリックし、[basics] の下の [pageIcon] を探します。

アプリケーションリソースの場合、アイコンパスはアプリケーションに対する相対パスとなります (例: /abook.gif)。

このページには、タイトルとアイコンがあります。
<xp:view xmlns:xp="http://www.ibm.com/xsp/core" pageTitle="My Page"
	pageIcon="/abook.gif">
	<xp:this.data>
		<xp:dominoDocument var="document1" formName="form1"></xp:dominoDocument>
	</xp:this.data>
	<xp:inputText id="inputText1" value="#{document1.subject}"
		style="font-weight:bold">
	</xp:inputText>
	<xp:button value="submit" id="button1" style="font-weight:bold">
		<xp:eventHandler event="onclick" submit="true"
			refreshMode="complete" immediate="false" save="true">
		</xp:eventHandler>
	</xp:button>
</xp:view>