DirectAnimation Animated Header --EndStyleBvr Class DirectAnimation Animated Header --EndStyleBvr Class* Microsoft DirectAnimation SDK
*Contents  *Index  *Topic Contents
*Previous Topic: DXMException Class
*Next Topic: ErrorAndWarningReceiver Interface

EndStyleBvr Class


public class EndStyleBvr extends Behavior {
   // Methods
   public static EndStyleBvr newUninitBvr();
}

Creates an object that represents an endstyle behavior. The behavior defines the style (shape) applied to the end of line segments when drawn.

Use the endstyle behavior with the end method of the LineStyleBvr object.

EndStyleBvr Methods

bullet1.gifnewUninitBvr


newUninitBvr

EndStyleBvr Class

This method allows you to refer to an EndStyleBvr 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.

public static EndStyleBvr newUninitBvr( );

Return Values

Returns the EndStyleBvr object.

Relevant Fields from the Statics Class

The following fields are defined in the Statics class and are most relevant to objects of type EndStyleBvr.

public final static EndStyleBvr endStyleFlat;

public final static EndStyleBvr endStyleRound;

public final static EndStyleBvr endStyleSquare;

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

*Top of Page