Given a Class object return true if the Class contains anything that is CALLable.
            
 
    Namespace: 
   MicroFocus.COBOL.RuntimeServices
    Assembly:
   MicroFocus.COBOL.RuntimeServices (in MicroFocus.COBOL.RuntimeServices.dll) Version: 1.2.3.4
 
public bool IsCOBOLProgram(
	Type programType
)
Public Function IsCOBOLProgram ( 
	programType As Type
) As Boolean
public:
virtual bool IsCOBOLProgram(
	Type^ programType
) sealed
abstract IsCOBOLProgram : 
        programType : Type -> bool 
override IsCOBOLProgram : 
        programType : Type -> bool Parameters
- programType
- Type: SystemType
 
Return Value
Type: 
BooleanImplements
IRunUnitIsCOBOLProgram(Type) 
bool isProgram1TypeCOBOL = myRunUnit.IsCOBOLProgram(typeof(Program1));
bool isAStringTypeCOBOL = myRunUnit.IsCOBOLProgram(typeof(System.String));
Dim isProgram1TypeCOBOL As Boolean = myRunUnit.IsCOBOLProgram(GetType(Program1))
Dim isAStringTypeCOBOL As Boolean = myRunUnit.IsCOBOLProgram(GetType(System.String))
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
 
Reference