MicroStation PowerDraft CONNECT Edition Help

式のタイプとシンタックスの例

式のタイプとシンタックスの例

さまざまなタイプの式とそのシンタックスの例を次に示します。
  • 幾何公差記号(算術)
    • 1 +"4"は値5を返す。
    • 2.3 * 3は値6.9を返す。
    • 12/5は値2.4を返す。
    • 12\5は値2を返す。
    • 25 mod 3は値1を返す。
  • 文字列の連結
    • 1 & "4"は値"14"を返す。
    • "Pipe" & "and" & "Valve"は値"Pipe and Valve"を返す。
  • IIf記号(条件)
    • IIf (500>200, "math ok", "math wrong")は値"math ok"を返す。
    • IIf (500<200, "math ok", "math wrong")は値"math wrong"を返す。
  • IIf記号(比較)
    • 20<10は値"false"を返す。
    • IIf(System.String.Compare ("Pipe", "Pipe"), "match", "no match")は値"match"を返す。
  • System String
    • System.String.Length("Pipe")は値"4"を返す。
  • System Math
    • System.Math.Sin(45*System.Math.PI/180)
    • System.Math.Round(4.53459)
    • System.Math.Log(1.2) / System.Math.Log(0.1)
    • System.Math.Max(1.2, 1.1)
  • System Path
    • System.Path.GetFileNameWithoutExtension("C:\ProgramData\Bentley\MicroStation CONNECT Edition\Configuration\Organization\Dgnlib\Gui\test.dgnlib")は値"test"を返す。
    • System.Path.GetExtension("C:\ProgramData\Bentley\MicroStation CONNECT Edition\Configuration\Organization\Dgnlib\Gui\test.dgnlib")は値".dgnlib"を返す。
  • 要素プロパティ
    • this.GetElement().ElementID
    • this.GetElement().TotalLength
    • this.GetElement().ElementDescription
    • this.GetElement().Color
  • モデルプロパティ
    • this.GetModel().Is3D
    • this.GetModel().Name
    • this.GetModel().Description
    • this.GetModel().Resolution
  • ファイルプロパティ
    • 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"
    • this.GetItem("DGNECPlugin_Test:Father").GetRelatedItem("FatherHasChild:0:Child").Tag
  • MSTN変数
    • MSTNvariable.GetLocalTempDirectoryBaseName()
    • MSTNvariable.GetVariable("MS_CELL")
    • MSTNvariable.IsVariableDefinedAndTrue("MS_CELL")
    • MSTNvariable.IsVariableDefinedAndFalse("MS_CELL")
    • MSTNvariable.IsVariableDefined("MS_CELL")
    • MSTNvariable.GetLocalTemporaryDirectory("Bentley")
  • デザインファイルの設定
    • 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()
  • アクティブファイル
    • 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.GetDisplayString()
    • ActiveFile.GetDisplayValue()
    • ActiveFile.GetElement().Level
    • ActiveFile.GetFile().Author
    • ActiveFile.GetInstanceId()
    • ActiveFile.GetInstanceLabel()
    • ActiveFile.GetItem()
    • ActiveFile.GetModel()
    • ActiveFile.GetRelatedInstance()
    • ActiveFile.GetRelatedItem()
    • 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
  • セッション
    • 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.ProjectName
    • WorkSet.ProjectIndustry
    • WorkSet.ProjectNumber
    • WorkSet.ConnectProjectGUID
    • WorkSet.ProjectAssetType
    • WorkSet.ProjectLocation
    • WorkSet.ProjectStatus
    • WorkSet.WorkSetDescription
    • WorkSet.WorkSetName
    • WorkSet.WorkSpaceName
作業環境の作成時にカスタム日付やカスタムテキストなどの詳細プロパティを追加した場合は、以下の式を使用する必要があります。

注記: WorkSet.CustomPropertyName

  • System.Date Time(この場合は、「アイテムタイプ」にDate1とDate2のプロパティを作成する必要があります)
    • 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())
  • アクティブロック
    • 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()
  • アクティブなビュー
    • 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()
    • ActiveView.UsesClipVolumeElement()
  • アクティブなモデル
    • 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