DirectAnimation Animated Header --Static Methods Relevant to StringBvr Objects DirectAnimation Animated Header --Static Methods Relevant to StringBvr Objects* Microsoft DirectAnimation SDK
*Contents  *Index  *Topic Contents
*Previous Topic: Static Fields Relevant to SoundBvr Objects
*Next Topic: Static Methods Relevant to Transform2Bvr Objects

Static Methods Relevant to StringBvr Objects



concat

Statics Class

Creates a string behavior representing the concatenation of the given behaviors. The behavior's value is the character string consisting of the value of b appended to the end of the value of a.

public static StringBvr concat(
  StringBvr a,
  StringBvr b
  );

Parameters
a and b
The StringBvr objects to concatenate.
Return Values

Returns the StringBvr object.


toBvr

Statics Class

Converts a type of Java.lang.String to a StringBvr. The only time toBvr is used is when converting Java numbers, booleans, or strings to their corresponding DirectAnimation types. It is not used for constants such as red, yVector3, and origin2 because these are defined as constant behaviors.

public static StringBvr toBvr(
  String string
  );

Parameters
string
The String type to be converted.
Return Values

Returns the StringBvr object;

© 1998 Microsoft Corporation. All rights reserved. Terms of Use.

*Top of Page