• このフォーラムは、www.cad3d.it/forum1 - イタリアのデザインコミュニティの機械翻訳です。いくつかの用語は正しく翻訳されていません。

ilogicsについて

  • Thread starter Thread starter and
  • Start date Start date

and

Guest
注文したこれらの属性で個人的な属性を作成するにはどうすればよいですか?
私はこの機能を実行していますが、私は大きさの順にいません...
iproperties.value("custom", "misure_ingombro") = (measure.extentslength) & "x"&(measure.extentswidth)& "x"&(measure.extsheight)。 ログイン

ピースの測定例:
測定.extentslength = 10
測定.extentswidt = 7
測定値幅 =14

私の関数の結果は:

測定値 = 10x7x14

お問い合わせ
測定値 = 7x10x14

ilogic関数を使うにはどうすればよいですか?
 
注文したこれらの属性で個人的な属性を作成するにはどうすればよいですか?
私はこの機能を実行していますが、私は大きさの順にいません...
iproperties.value("custom", "misure_ingombro") = (measure.extentslength) & "x"&(measure.extentswidth)& "x"&(measure.extsheight)。 ログイン

ピースの測定例:
測定.extentslength = 10
測定.extentswidt = 7
測定値幅 =14

私の関数の結果は:

測定値 = 10x7x14

お問い合わせ
測定値 = 7x10x14

ilogic関数を使うにはどうすればよいですか?
これは私が使用するilogicルールの一部です。

Code:
l = 円形(fp.length*10、1)
w = ラウンド(fp.width*10,1)

h = osmcd.thickness.value*10

dim olist 新しい配列リストとして
olist.add(l)
olist.add(w)
olist.add(h)

olist.sort() を呼び出す

iproperties.value(oocc.name, "custom", "length")= olist.item(2)
iproperties.value(oocc.name、"custom", "width") = olist.item(1)
iproperties.value(oocc.name, "custom", "thickness") = olist.item(0)
最小値 = olist.item(0)
ミドル = olist.item(1)
最大の = olist.item(2)
iproperties.value(oocc.name, "custom", "stocksize") = 最大の& "x"& "x"& "& "& "&"& "& "&"
ケースの交換方法がわかると思います。
 
これは私が使用するilogicルールの一部です。

Code:
l = 円形(fp.length*10、1)
w = ラウンド(fp.width*10,1)

h = osmcd.thickness.value*10

dim olist 新しい配列リストとして
olist.add(l)
olist.add(w)
olist.add(h)

olist.sort() を呼び出す

iproperties.value(oocc.name, "custom", "length")= olist.item(2)
iproperties.value(oocc.name、"custom", "width") = olist.item(1)
iproperties.value(oocc.name, "custom", "thickness") = olist.item(0)
最小値 = olist.item(0)
ミドル = olist.item(1)
最大の = olist.item(2)
iproperties.value(oocc.name, "custom", "stocksize") = 最大の& "x"& "x"& "& "& "&"& "& "&"
ケースの交換方法がわかると思います。
私は経験が浅いことを私を助けることができます!
お問い合わせ
 
私は経験が浅いことを私を助けることができます!
お問い合わせ
完全なコードを送信し、私は試してみる(あなたがそれをしようとしているファイルでさえ)
 
ecco il mio codice...

iproperties.value("custom", "misure_ingombro") = ((measure.extentslength) & "x"&(measure.extentswidth)& "x"&(measure.extentsheight))。 ログイン
 
ecco il mio codice...

iproperties.value("custom", "misure_ingombro") = ((measure.extentslength) & "x"&(measure.extentswidth)& "x"&(measure.extentsheight))。 ログイン
コードを含むファイル(iptまたはiam)を送信できますか? 試してみると、注文しておらず。
 
questo dovrebbe運賃:
Code:
l = (円形(測定.extentslength、2))
w = (全般(測定.extentswidth, 2))
h = (全般(測定.extentsheight, 2))

dim olist 新しい配列リストとして
olist.add(l)
olist.add(w)
olist.add(h)

olist.sort() を呼び出す

iproperties.value("custom", "length") = olist.item(2)
iproperties.value("custom", "width") = olist.item(1)
iproperties.value("custom", "height") = olist.item(0)



最小値 = olist.item(0)
ミドル = olist.item(1)
最大の = olist.item(2)



iproperties.value("custom", "misure_ingombro") = 最大の& "x "&" x "& "& "&"& "mm"
 
..perfetto ... molto simile al mio ...
ho tolto ソロ le righe :
iproperties.value("custom", "length") = olist.item(2)
iproperties.value("custom", "width") = olist.item(1)
iproperties.value("custom", "height") = olist.item(0)

無クレアi 3パラメタトリセパラチ!

グラジーミル
 
グループのすべての子供のためのこれらのプロパティを計算するにはどうすればよいですか?
1 つずつ開くことなく、ilogic を実行しますか?
 
Last edited:

Forum statistics

Threads
46,674
Messages
380,976
Members
2
Latest member
loop80
このフォーラムは、www.cad3d.it/forum1 - イタリアのデザインコミュニティの機械翻訳です。いくつかの用語は正しく翻訳されていません。

Members online

No members online now.
Back
Top