In the Database tab in the Viewport Display panel locate Labels button and press its dropdown: in the Labels field there is a preloaded list of automatic labels for the level hierarchy and reserves fields. We can add to this list by configuring custom labels.
Press the gear icon on the right from the Label dropdown.
Click the blue plus icon to add a new label.
Rename the label to "Record".
Paste the sample formula into the code editor.
Double click in the Available Formulas for code hints.
Press OK to finish.
...
Custom Display Label Examples
...
Во вкладке Database в панели области просмотра найдите кнопку Labels и откройте ее раскрывающийся список. В нем находится предварительно загруженный список автоматических меток для иерархии уровня и полей запасов. Вы можете расширить этот список, добавив в него пользовательские метки.
Нажмите значок шестеренки, находящийся справа от раскрывающегося списка Label.
Нажмите синюю кнопку со знаком плюса, чтобы добавить новую метку.
Измените имя метки на «Record» (Запись).
Вставьте фрагмент формулы в редактор кода.
Подсказки по кодам можно посмотреть дважды щелкнув по Available Formulas (Доступные формулы).
Нажмите ОК для завершения.
...
Примеры пользовательских меток
Пример 1. Создание пользовательской идентификационной метки
Code Block |
---|
public class Label : ILabelTextProvider { public string GetLabel(RecordAndShadingContext rsc) { if(rsc.Record.Table.HoldsDumps) return ""; var Name = rsc.Record.GetNames(); var pit = Name[2]; var bench = Name[4]; var blast = Name[5]; return pit + "_" + bench + "_" + blast; } } |
...
Пример 2.
...
Идентификационная метка только для выемочного блока GC
Code Block |
---|
public class Label : ILabelTextProvider { public string GetLabel(RecordAndShadingContext rsc) { //If dump record or a blast solid, return nothing. if(!rsc.Record.GetNames()[0].Eq("Reserves") || !rsc.Record.IsDigLeaf) return ""; var agent = rsc.CurrentAgent; var database = rsc.Record.Database; var digBlock = rsc.Record.GetStringValue(database.FindField("DigSolid", "reservesDataSource"), (IParcelSubset)null); var isGradeControl = digBlock.Eq("BlockModel"); var blast = string.Empty; var flitch = string.Empty; if (isGradeControl) { var Name = rsc.Record.GetNames(); var pit = Name[2]; var bench = Name[4]; var shot = Name[5]; return agent + " " + flitch + "RL" + Environment.NewLine + shot ; } var names = rsc.Record.GetNames(); flitch = names[6]; blast = names[5]; return agent + " " + flitch + "RL" + Environment.NewLine + blast + "_" + parcel + "_" + block; } } |
...
Пример 3.
...
Объем и тонны для блока
Code Block |
---|
public class Label : ILabelTextProvider { PatriField miningVol; PatriField miningDt; public string GetLabel(RecordAndShadingContext rsc) { miningDt ??= rsc.ShadingContext.Database.FindField("mining_drytonnes"); miningVol ??= rsc.ShadingContext.Database.FindField ("mining_volume"); return "dig: " + rsc.Record.GetDoubleValue(miningVol, ParcelAll.Default).ToString("#,##0") + " bcm" + Environment.NewLine + rsc.Record.GetDoubleValue(miningDt, ParcelAll.Default).ToString("#,##0") + " t"; } } |
...
Пример 4.
...
Когда блок был запланирован в первый раз
Code Block |
---|
public class Label : ILabelTextProvider { public string GetLabel(RecordAndShadingContext rsc) { var date = rsc.FirstScheduledTime.ToString(); var ignoreDate = "31/12/9999 11:59:59 PM"; //Skip Conditions if(date == ignoreDate) return "" ; else return date; } } |