Atspi.Text.GetAttributeValue C# (CSharp) Method

GetAttributeValue() public method

public GetAttributeValue ( int offset, string attributeName, int &startOffset, int &endOffset, bool &defined ) : string
offset int
attributeName string
startOffset int
endOffset int
defined bool
return string
        public string GetAttributeValue(int offset, string attributeName, out int startOffset, out int endOffset, out bool defined)
        {
            string val;
            proxy.GetAttributeValue (offset, attributeName, out val, out startOffset, out endOffset, out defined);
            return val;
        }