ElementStringSet Method (MElementClass)
name of the attribute
value of the attribute
time interval for changes in seconds
Sets attribute value smoothly during the time interval. This method works only with attributes, whose values are strings.
Syntax
Public Overridable Sub ElementStringSet( _
   ByVal _bsAttributeName As String, _
   ByVal _bsValue As String, _
   ByVal _dblTimeForChange As Double _
) 
public virtual void ElementStringSet( 
   string _bsAttributeName,
   string _bsValue,
   double _dblTimeForChange
)
public procedure ElementStringSet( 
    _bsAttributeName: String;
    _bsValue: String;
    _dblTimeForChange: Double
); virtual; 
public: virtual void ElementStringSet( 
   BSTR* _bsAttributeName,
   BSTR* _bsValue,
   double _dblTimeForChange
) 

Parameters

_bsAttributeName
name of the attribute
_bsValue
value of the attribute
_dblTimeForChange
time interval for changes in seconds
Example
myElement.ElementStringSet("pos", "top", 2.0);
myElement.ElementStringSet("pos", "top", 2.0);
myElement.ElementStringSet('pos', 'top', 2.0);
See Also

Reference

MElementClass Class
MElementClass Members