MPLATFORMLib Namespace > MWriterClass Class : AttributesHave Method |
Public Overridable Sub AttributesHave( _ ByVal _bsName As String, _ ByRef _pbHave As Integer, _ ByRef _pbsValueOrDefault As String _ )
public virtual void AttributesHave( string _bsName, out int _pbHave, out string _pbsValueOrDefault )
Dim myExist As Integer Dim myValue As String myAttributes.AttributesHave("pos", myExist, myValue)
int myExist; string myValue; myAttributes.AttributesHave("pos", out myExist, out myValue);
var myExist: integer; myValue: string; begin m_pAttributes.AttributesHave('pos', myExist, myValue); end;