Ajuda MicroStation CONNECT Edition

Exemplos de Sintaxe e Tipos de Expressão

Exemplos de Sintaxe e Tipos de Expressão

Veja abaixo os diferentes tipos de Expressões e seus exemplos de sintaxe:
  • Símbolos gerais (Aritmética)
    • 1 + "4" retornará o valor 5
    • 2.3 * 3 retornará o valor 6.9
    • 12/5 retornará o valor 2.4
    • 12\5 retornará o valor 2
    • Exponente (^)
    • Módulo (%)
    • Igual (==)
    • Diferente de (!=)
    • Menor que (<)
    • Maior que (>)
    • Menor que igual a (<=)
    • Maior que Igual a (>=)
    • E (&&)
    • Ou (| |)
    • Não (!) - Nega um valor real ou falso
  • Concatenação de strings
    • 1 & "4" retornará o valor "14"
    • "Óleoduto" & " e " & "Válvula" retornarão o valor "Óleoduto e Válvula"
  • Símbolos IIf (Condição)
    • IIf (500>200, "matemática ok", "matemática errada") retornará o valor "matemática ok"
    • IIf (500<200, "matemática ok", "matemática errada") retornará o valor "matemática errada"
  • Símbolo IIf (Comparação)
    • 20<10 retornará o valor "falso"
    • IIf(System.String.Compare ("Óleoduto", "Óleoduto"), "tem correspondência", "sem correspondência") retornará o valor "tem correspondência"
  • Matemática do Sistema
    • System.Math.Abs (valor)
    • System.Math.Acos (valor)
    • System.Math.Asin (valor)
    • System.Math.Atan (valor)
    • System.Math.Atan2 (y,x)
    • System.Math.BigMul (a,b)
    • System.Math.Ceiling (a)
    • System.Math.Cos (r)
    • System.Math.Cosh (r)
    • System.Math.E
    • System.Math.Exp (p)
    • System.Math.Floor (d)
    • System.Math.IEEERemainder (x,y)
    • System.Math.Log (r)
    • System.Math.Log10 (d)
    • System.Math.Max (x,y)
    • System.Math.Min (x,y)
    • System.Math.PI
    • System.Math.Pow (x,y)
    • System.Math.Round (valor)
    • System.Math.Sin(45*System.Math.PI/180)
    • System.Math.Sin(Duplo a)
    • System.Math.Sin(a)
    • System.Math.Sqrt(Duplo d)
    • System.Math.Tan (a)
    • System.Math.Tanh (a)
    • System.Math.Round(4.53459)
    • System.Math.Log(1.2) / System.Math.Log(0.1)
    • System.Math.Max(1.2, 1.1)
  • Caminho do Sistema
    • System.Path.GetFileNameWithoutExtension("C:\ProgramData\Bentley\MicroStation CONNECT Edition\Configuration\Organization\Dgnlib\Gui\test.dgnlib") retornará o valor "test"
    • System.Path.GetExtension("C:\ProgramData\Bentley\MicroStation CONNECT Edition\Configuration\Organization\Dgnlib\Gui\test.dgnlib") retornará o valor ".dgnlib"
    • System.Path.Combine (caminho1,caminho2)
    • System.Path.GetDiretoryName (caminho)
    • System.Path.GetExtension (caminho)
    • System.Path.GetFileName (caminho)
    • System.Path.GetFileNameWithoutExtension (caminho)
    • System.Path.GetFullPath (caminho)
  • String do sistema
    • System.String.Compare (string1,string2)
    • System.String.CompareI (string1,string2)
    • System.String.Contains(String string1, String string2)
    • System.String.Containsl(String string1, String string2)
    • System.String.Format (formato,arg0)
    • System.String.IndexOf (pesquisar,encontrar)
    • System.String.LastIndexOf (pesquisar,encontrar)
    • System.String.Length("Óleoduto") retornará o valor "4"
    • System.String.Substring (valor,Índice de início,length)
    • System.String.ToLower (valor)
    • System.String.ToString (valor)
    • System.String.ToUpper (valor)
    • System.String.Apara (valor)
  • Propriedades do elemento
    • this.GetElement().ElementID
    • this.GetElement().TotalLength
    • this.GetElement().ElementDescription
    • this.GetElement().Color
  • Nota: A sintaxe "this(" e "Column(" são suportadas para manter a compatibilidade com versões anteriores.
  • Propriedades do modelo
    • this.GetModel().Is3D
    • this.GetModel().Name
    • this.GetModel().Description
    • this.GetModel().Resolution
  • Propriedades do Arquivo
    • this.GetFile().Author
    • this.GetFile().Editor
    • this.GetFile().FileName
  • GetItemSameLibrary()
    • this.GetItem("Lib1Itp1").TextProp
    • this.GetItem("Lib1Itp1").IntegerProp
    • this.GetItem("Lib1Itp1").DoubleProp
    • this.GetItem("Lib1Itp1").ArrayProp[0] & " \" & this.GetItem("Lib1Itp1").ArrayProp[1]
  • GetItemDifferentLibrary()
    • this.GetItem("Lib1:Lib1Itp1").TextProp
    • this.GetItem("Lib1:Lib1Itp1").IntegerProp
    • this.GetItem("Lib1:Lib1Itp1").ArrayProp[0] & " \" & this.GetItem("Lib1:Lib1Itp1").ArrayProp[1]
  • GetItemExtrinsicSchema
    • this.GetItem("DGNECPlugin_Test:Father").FirstName
    • this.GetItem("DGNECPlugin_Test:Father").FirstName & " \" & this.GetItem("DGNECPlugin_Test:Father").LastName
  • GetItemRelatedExtrinsicSchema
    • this.GetItem("DGNECPlugin_Test:Father").FirstName & " \" & this.GetItem("DGNECPlugin_Test:Father").LastName"
    Nota: GetRelatedItem é obsoleto. Utilize *GetRelatedInstance* no lugar.
  • Variável MSTN
    • MSTNvariable.GetLocalTempDirectoryBaseName()
    • MSTNvariable.GetNameForTemporarioFile(String parcialPathName, prefixo de String)
    • MSTNvariable.GetVariable("MS_CELL")
    • MSTNvariable.IsVariableDefinedAndTrue("MS_CELL")
    • MSTNvariable.IsVariableDefinedAndFalse("MS_CELL")
    • MSTNvariable.IsVariableDefined("MS_CELL")
    • MSTNvariable.GetLocalTemporaryDirectory("Bentley")
  • Configurações do Arquivo de Desenho
    • DesignFileSetting.GetMasterUnitName()
    • DesignFileSetting.GetActiveAngle()
    • DesignFileSetting.GetAxisAngle()
    • DesignFileSetting.GetTagIncrement()
    • DesignFileSetting.GetFenceClip()
    • DesignFileSetting.GetFenceOverlap()
    • DesignFileSetting.GetFenceVoid()
    • DesignFileSetting.GetGridLock()
    • DesignFileSetting.GetGridRef()
    • DesignFileSetting.GetIsometricLock()
    • DesignFileSetting.GetGraphicGroup()
    • DesignFileSetting.GetSubUnitName()
    • DesignFileSetting.GetAngleLock()
    • DesignFileSetting.GetAngleTolerance()
    • DesignFileSetting.GetSnapMode()
    • DesignFileSetting.GetPointerColor()
    • DesignFileSetting.GetHiLightColor()
    • DesignFileSetting.GetScaleTolerance()
    • DesignFileSetting.GetGridAspect()
    • DesignFileSetting.GetGridOrientation()
    • DesignFileSetting.GetSnapDivisor()
    • DesignFileSetting.GetSnapAssociation()
    • DesignFileSetting.GetIsoPlane()
    • DesignFileSetting.GetStreamDelta()
    • DesignFileSetting.GetStreamTol()
    • DesignFileSetting.GetStreamAngle()
    • DesignFileSetting.GetStreamArea()
    • DesignFileSetting.GetStreamAcceptance()
    • DesignFileSetting.GetSolidsArea()
    • DesignFileSetting.GetAngleClockwise()
    • DesignFileSetting.GetAngleBase()
    • DesignFileSetting.GetActiveScaleX()
    • DesignFileSetting.GetActiveScaleY()
    • DesignFileSetting.GetAxisLock()
    • DesignFileSetting.GetBackground(1)
    • DesignFileSetting.GetPixelWidth(1)
    • DesignFileSetting.GetPixelHeight(1)
    • DesignFileSetting.GetSelectionSetClr()
    • DesignFileSetting.GetSnapACSPlane()
    • DesignFileSetting.GetACSPlaneLock()
    • DesignFileSetting.GetScaleLock()
    • DesignFileSetting.GetSnapLock()
    • DesignFileSetting.GetLevelLock()
  • Arquivo Ativo
    • ActiveFile.ACSPlaneSnap
    • ActiveFile.ActiveAngle
    • ActiveFile.AngleLock
    • ActiveFile.Association
    • ActiveFile.Author
    • ActiveFile.AuthoringProductName
    • ActiveFile.AxisLock
    • ActiveFile.Client
    • ActiveFile.Comments
    • ActiveFile.ConnectProjectGUID
    • ActiveFile.CreateDate
    • ActiveFile.DesignRevisionCount
    • ActiveFile.DesignRevisions
    • ActiveFile.Editor
    • ActiveFile.FileName
    • ActiveFile.FileSize
    • ActiveFile.Format
    • ActiveFile.FormatMinorVersion
    • ActiveFile.GetClass()
    • ActiveFile.FormatMajorVersion
    • ActiveFile.GetInstanceId()
    • ActiveFile.GetInstanceLabel()
    • ActiveFile.GetRelatedInstance()
    • ActiveFile.Increment
    • ActiveFile.IsOfClass("Room","ExampleSchema.01.00")
    • ActiveFile.KeyPointDevisor
    • ActiveFile.Keywords
    • ActiveFile.LastSavedBy
    • ActiveFile.LevelLock
    • ActiveFile.Levels
    • ActiveFile.LevelsUsed
    • ActiveFile.Manager
    • ActiveFile.Models
    • ActiveFile.Orientation
    • ActiveFile.OriginalFileFormat
    • ActiveFile.Owner
    • ActiveFile.PlotDate
    • ActiveFile.ProjectAssetType
    • ActiveFile.ProjectIndustry
    • ActiveFile.ProjectLocation
    • ActiveFile.ProjectName
    • ActiveFile.ProjectNumber
    • ActiveFile.ProjectStatus
    • ActiveFile.Revision
    • ActiveFile.RevisionNumber
    • ActiveFile.SaveDate
    • ActiveFile.ScaleLock
    • ActiveFile.Sheet_Number
    • ActiveFile.ScaleTolerance
    • ActiveFile.SnapLock
    • ActiveFile.SnapMode
    • ActiveFile.StartAngle
    • ActiveFile.Subject
    • ActiveFile.Title
    • ActiveFile.Tolerance
    • ActiveFile.TotalEditingTime
    • ActiveFile.WorkSetDescription
    • ActiveFile.WorkSetName
    • ActiveFile.WorkSpaceName
    • ActiveFile.XActiveScale
    • ActiveFile.YActiveScale
    • ActiveFile.ZActiveScale
  • Sessão
    • Session.IsActiveFileInCfgVarList("MS_GUIDGNLIBLIST")
    • Session.IsV7DgnFile()
    • Session.IsDwgFile()
    • Session.IsDxfFile()
    • Session.IsReadOnlyFile()
    • Session.IsBentleyView()
    • Session.ItemBrowserInBentleyView()
    • Session.ActiveTaskType()
    • Session.ActiveWorkflow()
    • Session.AreCustomTasksAvailable()
    • Session.IsCustomTaskAvailable()
    • Session.ActiveCommandKeyin()
    • Session.IsMdlLoaded("PSELECT")
    • Session.EvalNEAsDouble("1+2",3.7)
    • Session.EvalNEAsInt("3+4",9)
    • Session.EvalNEAsBool("false","true")
    • Session.EvalNEAsString("a+b","abc")
    • Session.TreatActiveModelAs3D()
    • Session.ActiveModelIsReference()
    • Session.ActiveModelIs3dPrintingModel()
    • Session.ActiveModelIsMarkup()
    • Session.ActiveModelTypeIsDesign()
    • Session.ActiveModelTypeIsSheet()
    • Session.ActiveModelTypeIsDrawing()
    • Session.IsDisplaySetActive()
    • Session.IsNamedToolBoxOpen("Extra Tools")
    • Session.IsToolBoxOpen(-548,"MGDSHOOK")
    • Session.IsToolFrameOpen(-548,"MGDSHOOK")
    • Session.IsMdlDialogOpen()
    • Session.IsViewDisplayed()
    • Session.ActiveAnnotationScale()
    • Session.IsSnapModeValid(2048)
    • Session.ActiveSnapMode()
    • Session.DefaultSnapMode()
    • Session.IsProductLicensed(1000,"08.11.00..00")
    • Session.IsAccuSnapEnabled()
    • Session.GetTextElementJustification()
    • Session.SetTextElementJustification()
    • Session.GetSnapModeMenuMark(SnapMode.Keypoint)
    • Session.IsUndoActive()
    • Session.IsRedoActive()
    • Session.UndoCommandString()
    • Session.RedoCommandString()
    • Session.IsContextualTabSetKeyActive()
    • Session.IsUIItemStateEnabled("MyItem.Key",false)
    • Session.IsUIItemStateEnabled("MyItem.Key",false)
    • Session.IsUIItemStateChecked()
    • Session.GetUIItemStateMenuMark("MyItem.Key")
    • Session.IsSheetIndexReadOnly()
    • Session.ActiveAnnotationScaleString()
    • Session.ActiveAcsDescription()
    • Session.ActiveFileAllowsExports()
    • Session.ActiveFileAllowsPrinting()
    • Session.ActiveFileIsScratch()
    • Session.ActiveFileIsAConfiguredDgnlib()
    • Session.IsTaskNavigationInRibbon()
    • Session.IsLevelManagerAllowed()
  • WorkSet
    • WorkSet.ProjectName
    • WorkSet.ProjectIndustry
    • WorkSet.ProjectNumber
    • WorkSet.ConnectProjectGUID
    • WorkSet.ProjectAssetType
    • WorkSet.ProjectLocation
    • WorkSet.ProjectStatus
    • WorkSet.WorkSetDescription
    • WorkSet.WorkSetName
    • WorkSet.WorkSpaceName
Se você tiver adicionado propriedades avançadas ao criar um WorkSpace, como data personalizada ou texto personalizado, deverá utilizar a expressão abaixo:

Nota: WorkSet.CustomPropertyName

  • System.DateTime (para isso, você precisa criar as propriedades Date1 e Date2 no Tipo de item)
    • System.DateTime.Now()
    • System.DateTime.GetYear(System.DateTime.Now())
    • System.DateTime.GetDateOnly(System.DateTime.Now())
    • System.DateTime.GetDayOfYear(System.DateTime.Now())
    • System.DateTime.GetMillisecond(System.DateTime.Now())
    • System.DateTime.GetSecond(System.DateTime.Now())
    • System.DateTime.GetMinute(System.DateTime.Now())
    • System.DateTime.GetHour(System.DateTime.Now())
    • System.DateTime.GetMonth(System.DateTime.Now())
    • System.DateTime.ToLocalTime(System.DateTime.Now())
    • System.DateTime.Compare(this.date1,this.date2)
    • System.DateTime.UtcNow()
    • System.DateTime.Equals(this.date1,this.date2)
    • System.DateTime.SubtractionInDays(this.date1,this.date2)
    • System.DateTime.SubtractionInYears(this.date1,this.date2)
    • System.DateTime.SubtractionInMonths(this.date1,this.date2)
    • System.DateTime.IsLeapYear(System.DateTime.Now())
  • System.Environment
    • System.Environment.CurrentDirectory ()
    • System.Environment.ExpandEnvironmentVariables (nome)
    • System.Environment.GetEnvironmentVariable (variável)
    • System.Environment.UserName ()
  • Bloqueio ativo
    • ActiveLock.AngleLockEnabled()
    • ActiveLock.AnnotationScaleLockEnabled()
    • ActiveLock.AssociationLockEnabled()
    • ActiveLock.ConstructionPlaneLockEnabled()
    • ActiveLock.ConstructionSnapLockEnabled()
    • ActiveLock.GraphicGroupLockEnabled()
    • ActiveLock.GridLockEnabled()
    • ActiveLock.IsometricLockEnabled()
    • ActiveLock.LevelLockEnabled()
    • ActiveLock.PatternAssociationLockEnabled()
    • ActiveLock.SnapLockEnabled()
    • ActiveLock.TextNodeLockEnabled()
    • ActiveLock.UnitLockEnabled()
    • ActiveLock.ElementTemplateAssociationLockEnabled()
  • Vista ativa
    • ActiveView.DisplayStyleName()
    • ActiveView.UseCamera()
    • ActiveView.ShowFill()
    • ActiveView.ShowACSTriad()
    • ActiveView.ShowBackground()
    • ActiveView.ShowBoundayDisplay()
    • ActiveView.UseClipBack()
    • ActiveView.UseClipFront()
    • ActiveView.UseClipVolume()
    • ActiveView.ShowConstructionClass()
    • ActiveView.ShowDimensionClass()
    • ActiveView.ShowDataFields()
    • ActiveView.UseDisplaySet()
    • ActiveView.ShowFastCells()
    • ActiveView.ShowFastCurves()
    • ActiveView.ShowGrid()
    • ActiveView.UseLevelOverrides()
    • ActiveView.ShowLineStyles()
    • ActiveView.ShowLineWeight()
    • ActiveView.ShowPatternBumpMaps()
    • ActiveView.UseDefaultLighting()
    • ActiveView.ShowTags()
    • ActiveView.ShowText()
    • ActiveView.ShowTextNodes()
    • ActiveView.ShowTransparency()
    • Modelo ativo
      • ActiveModel.Name
      • ActiveModel.Type
      • ActiveModel.IsActive
      • ActiveModel.Is3D
      • ActiveModel.TreatAs3D
      • ActiveModel.CellType
      • ActiveModel.Description
      • ActiveModel.DefaultRefLogical
      • ActiveModel.PropagateAnnotationScale
      • ActiveModel.AnnotationScale
      • ActiveModel.ModelId
      • ActiveModel.Hidden
      • ActiveModel.IsMarkup
      • ActiveModel.CanbePlacedAsCell
      • ActiveModel.IsMaster
      • ActiveModel.UpdateFieldsAutomatically
      • ActiveModel.CanbePlacedAsAnnotationCel
      • ActiveModel.LineStyleScale
      • ActiveModel.Format
      • ActiveModel.MasterUnit
      • ActiveModel.SubUnit
      • ActiveModel.Accuracy
      • ActiveModel.MasterUnitLabel
      • ActiveModel.SubUnitLabel
      • ActiveModel.GlobalLineStyleScaleFactor
      • ActiveModel.DesignScale
      • ActiveModel.PaperScale
      • ActiveModel.AngleReadoutFormat
      • ActiveModel.AngleReadoutAccuracy
      • ActiveModel.DirectionMode
      • ActiveModel.DirectionBase
      • ActiveModel.Direction
      • ActiveModel.GridLock
      • ActiveModel.GridMaster
      • ActiveModel.GridReference
      • ActiveModel.GridConfig
      • ActiveModel.GridAspect
      • ActiveModel.IsometricLock
      • ActiveModel.IsometricPlane
      • ActiveModel.ACSPlane
      • ActiveModel.Resolution
      • ActiveModel.WorkingArea
      • ActiveModel.SolidArea
      • ActiveModel.SolidAccuracy
    • ActiveView.UsesClipVolumeElement()
  • Ponto de Origem Global
    • Coordinates.GlobalOrigin.GetX(this.GetElement().Origin)
    • Coordinates.GlobalOrigin.GetY(this.GetElement().Origin)
    • Coordinates.GlobalOrigin.Getz(this.GetElement().Origin)
    • Coordinates.GlobalOrigin.GetGlobalOrigin()

Usando esta expressão, você pode definir e redirecionar as coordenadas da Origem global no arquivo de design. A Origem do arquivo de design padrão exibe os valores padrão.

  • Expressões GCS
    • GCS.GetLatitude(elemento selecionado de ponto)
    • GCS.GetLongitude(elemento selecionado de ponto)
    • GCS.GetElevation(Elemento selecionado de ponto)

Você pode definir uma propriedade Tipo de item usando uma das expressões GCS no campo Expressão ou usando o Construtor de expressões.