Defines access permissions for a parameter.

Namespace: Autodesk.Civil.Runtime
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0

Syntax

C#
public enum ParamAccessType
Visual Basic
Public Enumeration ParamAccessType
Visual C++
public enum class ParamAccessType

Members

Member nameValueDescription
None0
Input1
Output2
InputAndOutput3

Remarks

There is a bug of VS2008 C# IDE that intellisense couldn't display the properties or methods that derive from a Base class which is designed as C++ template class. Solution: We defined some macro to expose those properties manually in the Param ParamBase derived classes by calling those properties defined in the base class. It's confirmed from MS that it'll be fixed in VS2010.And we'll remove this workaround then. http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=325291

See Also