03-12-2024
11:00 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-12-2024
11:00 PM
Not sure what you mean by your question.
1. Do you mean delete existing length column? 2. Or to just not expose length parameter only as iproperty?
For 2 either
Switch off the parameter export sub routine for the parameter or create an if statement in that routine to avoid the name length.
Private Sub ParaExport(ByRef oUParas As UserParameters, ByVal oParaName As String, _ ByVal oDecimalPrecision As CustomPropertyPrecisionEnum) For Each oUPara As UserParameter In oUParas If oUPara.Name = "Length" Then
Else oUPara.ExposedAsProperty = True
End if
If oUPara.Name = oParaName Then Dim oCPF As CustomPropertyFormat = oUPara.CustomPropertyFormat oCPF.PropertyType = CustomPropertyTypeEnum.kNumberPropertyType oCPF.Precision = oDecimalPrecision oUPara.Comment = "스윕길이로 산출함." Exit Sub End If Next End Sub
If this solved a problem, please click (accept) as solution.
Or if this helped you, please, click (like)
Regards
Alan
Or if this helped you, please, click (like)
Regards
Alan