移動先: 概要 戻り値 MEL 例.

概要

string longNameOf(string $object)

このプロシージャは $object のロング ネームを返します。$object が存在しないまたは固有でない場合は、空白を返します。

戻り値

なし

MEL 例

		//	Create a sphere.
		//
		string $spheres[] = `polySphere -name "sphere1"`;
		string $sphere = $spheres[0];

		longNameOf($sphere);
		//	Result: |sphere1 //