ParamAccessType Enumeration |
Defines access permissions for a parameter.
Namespace: Autodesk.Civil.RuntimeAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntaxpublic enum ParamAccessType
Public Enumeration ParamAccessType
public enum class ParamAccessType
MembersMember name | Value | Description |
---|
None | 0 | |
Input | 1 | |
Output | 2 | |
InputAndOutput | 3 | |
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