Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Constraints may be used to hide parts of the block model based on some criteria, such as material type or grade threshold.

To add a new constraint:

  1. In Designer tab > Display panel > Block Models section > Constraints dropdown > gear icon.

  2. Click the blue plus icon to add a new constraint.

  3. Rename the label to "HG Only".

  4. Paste the sample formula into the code editor.

  5. Press OK to finish.

...

Double click in the Available Formulas for code hints.

...

HG only blocks example

...

Ограничения используются, например, чтобы скрыть часть блоковой модели на основе определенных критериев, таких как тип материала или порог качества.

Для добавления нового ограничения:

  1. Во вкладке Designer перейдмите на панель Display в раздел Block Models. Нажмите на значок шестеренки, находящийся справа от раскрывающегося списка Constraints.

  2. Нажмите синюю иконку со знаком плюса, чтобы добавить новое ограничение.

  3. Измените имя на «HG Only» (Только высокое качество).

  4. Вставьте примерную формулу в редактор кода.

  5. Подсказки по кодам можно посмотреть, дважды щелкнув по Available Formulas (Доступные формулы).

  6. Нажмите ОК для завершения.

...

Показывать только материалы высокого качества
Code Block
languagec#
using System;
using System.Collections.Generic;
using System.Text;
using System.Linq;
using Alastri.RR.Ui;
using Alastri.RR.Service;

public class CustomBlockConstraint : IBlockConstraint
{
    public bool IsVisible(BlockContext context) 
    {
    	if (context.T("Parcel") == "hg")
    	{
			return true ;
		}
		return false ;
	}
}

...

Показывать определенные материалы
Code Block
languagec#
using System;
using System.Collections.Generic;
using System.Text;
using System.Linq;
using Alastri.RR.Ui;
using Alastri.RR.Service;

public class CustomBlockConstraint : IBlockConstraint
{
    public bool IsVisible(BlockContext context) 
    {
    	if (context.T("Parcel") == "hg" ||  context.T("Parcel") == "mg")
    	{
			return true ;
		}
		return false ;
	}
}

...

Фильтровать по Fe
Code Block
languagec#
using System;
using System.Collections.Generic;
using System.Text;
using System.Linq;
using Alastri.RR.Ui;
using Alastri.RR.Service;

public class CustomBlockConstraint : IBlockConstraint
{
    public bool IsVisible(BlockContext context) 
    {
        if (context.N("DryTonnes.FE") >= 57.5)
		{
			return true;
    	}
		return false;
		
	}
		
}

...

Фильтровать по Fe

...

и Al
Code Block
languagec#
using System;
using System.Collections.Generic;
using System.Text;
using System.Linq;
using Alastri.RR.Ui;
using Alastri.RR.Service;

public class CustomBlockConstraint : IBlockConstraint
{
    public bool IsVisible(BlockContext context) 
    {
        if (context.N("DryTonnes.FE") >= 57.5 && context.N("DryTonnes.AL") >= 1.0)
		{
			return true;
    	}
		return false;
		
	}
		
}

...