移動先: 概要 戻り値 関連項目. MEL 例.

概要

setAttrNiceNameResource(string $nodeType, string $attrShortName, string $str)

アトリビュートの niceName の値に対してローカライズ可能な 文字列リソース値を定義するための便利なルーチンです。

戻り値

なし

関連項目

loadPluginLanguageResources, setAttrEnumResource, setNodeNiceNameResource

引数

変数名 変数型 説明
$nodeTypestringノード タイプです。
$attrShortNamestringアトリビュートのショート ネームです。
$strstringこのアトリビュートに関連付ける表示可能なナイス ネームです。

MEL 例

  // Set the attribute nice name string associated with 
  // attribute "spos" on node type "myNode".  This example shows an
  // English resource name, however this routine would more often
  // be called in practice to provide localized string values. 
  // 
  setAttrNiceNameResource( "myNode", "spos", "Start Position");