DirectX Media for Animation Java Reference |
![]() Previous |
![]() Classes |
![]() Index |
![]() Next |
public class DashstyleBvr extends Behavior { // Fields public static DashstyleBvr dashStyleDashed; public static DashstyleBvr dashStyleSolid; // Methods public static DashstyleBvr newUninitBvr(); }
Creates an object that represents a dashstyle behavior. The behavior defines whether lines are drawn using a continuous stroke or a sequence of dashes.
You use the dashstyle behavior with the lineDashStyle method of the LinestyleBvr object.
For more information about Behaviors see the Behavior class.
public static DashstyleBvr newUninitBvr();This method allows you to refer to a dash-style behavior before that behavior has been defined. With this method you can create the behavior and use it in the definition of other behaviors, but not actually define its contents until some later point. (This is accomplished with the init method, which is available on all behaviors.) The system generates a run-time error if you initialize a non-uninitialized behavior, initialize an uninitialized behavior that has already been initialized, or run an initialized behavior that has not yet been initialized.
Return Value:
Returns the DashstyleBvr object.
© 1997 Microsoft Corporation. All rights reserved. Legal Notices.