Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
A.Acheson
in reply to: cjfgns1003

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