Versions Compared

Key

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

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

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

  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;
		
	}
		
}

...