TableOperationsTTryGetFieldAttribute(String, Type, Attribute) Method
            Attempts to get the specified attributeType for a field.
            
Namespace: Gemstone.Data.ModelAssembly: Gemstone.Data (in Gemstone.Data.dll) Version: 1.0.150 -- Release Build+539c8e20daab1f37d91aaa1ede2f080b59c0c784
public bool TryGetFieldAttribute(
	string fieldName,
	Type attributeType,
	out Attribute?? attribute
)
Public Function TryGetFieldAttribute ( 
	fieldName As String,
	attributeType As Type,
	<OutAttribute> ByRef attribute As Attribute
) As Boolean
public:
virtual bool TryGetFieldAttribute(
	String^ fieldName, 
	Type^ attributeType, 
	[OutAttribute] Attribute^% attribute
) sealed
function TryGetFieldAttribute(fieldName, attributeType, attribute);
- fieldName  String
 - Name of field to use for attribute lookup.
 - attributeType  Type
 - Type of attribute to attempt to get.
 - attribute  Attribute
 - Attribute that was found, if any.
 
Booleantrue if attribute was found; otherwise, 
false.
ITableOperationsTryGetFieldAttribute(String, Type, Attribute) | ArgumentException | attributeType is not an Attribute. |